{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Week 03 Assignment Covid\n", "\n", "New types of data and new data science technologies enable new research. These new technologies are technologies such as the ability to combine existing data or the ability to generate synthetic data from existing knowledge. This week casus is based on such research. Data is generated by Synthea's COVID-19 module. The data was constructed using three peer-reviewed publications published in the early stages of the global pandemic, when less was known, along with emerging resources, data, publications, and clinical knowledge. The simulation outputs synthetic Electronic Health Records (EHR), including the daily consumption of Personal Protective Equipment (PPE) and other medical devices and supplies. The Data is stored in separate tables to avoid redundancy, with as a concequence that tables need to be combined and reorganized in dataframes for analysing purpose.\n", "\n", "Keywords: merge data, subset data, clean data, generate data\n", "\n", "You will learn about combining data with pandas and numpy and you will learn to visualize with bokeh. Concretely, you will preprocess the partly Synthetic Covid data in an appropiate format in order to conduct statistical and visual analysis. Learning objectives\n", "\n", "- Combine multiple data sources for analysis\n", "- Read, inspect, clean, reshape data\n", "- Visualize data using bokeh\n", "- Maintain development environment \n", "- Apply coding standards and FAIR principles\n", "- Reshape the dataset into a format suitable for visual and statistical analysis\n", "- Use widgets to make the plot interactive \n", "- Use GIS libraries to plot geographical data\n", "\n", "Tutorials about combining data: https://github.com/fenna/BFVM22PROG1/blob/main/tutorials/tutorial_combine_data.ipynb\n", "\n", "study case combining data:https://github.com/fenna/BFVM22PROG1/blob/main/study_cases/adults_who_binge_drank_in_hot_towns.ipynb\n", "\n", "\n", "Please add the topics you want to learn about here: https://padlet.com/ffeenstra1/kzh2chaqleq3iovu\n", "\n", "\n", "Your job is to **visualize the lab values taken for COVID-19 patients of survived versus not survived patients**. \n", "\n", "The assignment consists of 6 parts:\n", "\n", "- [part 1: load the data](#0)\n", " - [Exercise 1.1](#ex-11)\n", "- [part 2: data wrangling](#1)\n", " - [Exercise 2.1](#ex-21)\n", "- [part 3: more wrangling](#2)\n", " - [Exercise 3.1](#ex-31)\n", "- [part 4: plot the data](#3)\n", " - [Exercise 4.1](#ex-41)\n", "- [part 5: plot patient location](#5)\n", " - [Exercise 5.1](#ex-51)\n", "\n", "\n", "Part 1 and 4 are mandatory, part 5 is optional (bonus)\n", "Mind you that you cannot copy code without referencing the code. If you copy code you need to be able to explain your code verbally and you will not get the full score. \n", "\n", "\n", "## About the data\n", "\n", "The data is generated by Synthea's COVID-19 module. The data was constructed using three peer-reviewed publications published in the early stages of the global pandemic, when less was known, along with emerging resources, data, publications, and clinical knowledge. The simulation outputs synthetic Electronic Health Records (EHR), including the daily consumption of Personal Protective Equipment (PPE) and other medical devices and supplies. For this assignment the `conditions`, `patients`, `observations`, `careplans` and `encounters` table will be used. The Data is stored in separate tables to avoid redundancy, with as a concequence that tables need to be combined and reorganized in dataframes for analysing purpose.\n", "\n", "Source: Walonoski J, Klaus S, Granger E, Hall D, Gregorowicz A, Neyarapally G, Watson A, Eastman J. Synthea™ Novel coronavirus (COVID-19) model and synthetic data set. Intelligence-Based Medicine. 2020 Nov;1:100007. https://doi.org/10.1016/j.ibmed.2020.100007\n", "\n", "Please download the data\n", "\n", "#### Covid Patients\n", "Patients are considered Covid patients if they are identified with `CODE` `840539006`\n", "\n", "\n", "#### Survivors\n", "Patients that had covid and where tested negative after isolation have tested code `94531-1`, SARS-CoV-2 RNA Pnl Resp NAA+probe (covid-sars test) + a value of `Not detected (qualifier value)`. These patients are considered to be survived covid patients. \n", "\n", "#### Non-Survivors\n", "Patients that did not survived Covid have a `DEATHDATE` which is not null. \n", "\n", "\n", "#### Lab values COVID-19 patients\n", "\n", "Patients are monitored for blood and heart conditions once they are admitted in Hospital or under treatment. The lab values of interest are as follow: \n", "\n", "- `48065-7` Fibrin D-dimer FEU [Mass/volume] in Platelet poor plasma\n", "- `26881-3` Interleukin 6 [Mass/volume] in Serum or Plasma\n", "- `2276-4` Ferritin [Mass/volume] in Serum or Plasma\n", "- `89579-7` Troponin I.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\n", "- `731-0` Lymphocytes [#/volume] in Blood by Automated count\n", "- `14804-9` Lactate dehydrogenase [Enzymatic activity/volume] in Serum or Plasma by Lactate to pyruvate reaction\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "---" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "## Part 1: Load the data (20 pt)\n", "\n", "Instructions: Load the data of the following files. \n", "Preferably we read the data not with a hard coded data path but using a config file. See https://fennaf.gitbook.io/bfvm22prog1/data-processing/configuration-files/yaml\n", "\n", "- conditions.csv\n", "- patients.csv\n", "- observations.csv\n", "- careplans.csv\n", "- encounters.csv\n", "\n", "Get yourself familiar with the data. Create some meaningful overviews. Answer the following questions\n", "\n", "1. How many patients are there\n", "2. How many covid-patients are there\n", "3. How many patients do have a 'Hospital admission for isolation' encounter\n", " \n", "
\n", "\n", " Hints\n", "\n", " \n", "
\n", "\n", "\n", "### 1.1 Code your solution" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import yaml\n", "\n", "def get_config():\n", " \"\"\" function that fetches the configuration \n", " parameters from config.yaml\"\"\"\n", " with open(\"./config.yaml\", 'r') as stream:\n", " config = yaml.safe_load(stream)\n", " return config\n", "\n", "config = get_config()\n", "conditions = config['conditions_data']\n", "patients = config['patients_data']\n", "observations = config['observations_data']\n", "careplans = config['careplans_data']\n", "encounters = config['encounters_data']" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "\n", "# read in the data\n", "df_conditions = pd.read_csv(conditions)\n", "df_patients = pd.read_csv(patients)\n", "df_observations = pd.read_csv(observations)\n", "df_careplans = pd.read_csv(careplans)\n", "df_encounters = pd.read_csv(encounters)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "amount of patients: 12352\n", "amount of covid patients: 8820\n", "amount of patients with \"Hospital admission for isolation encoutner\": 1867\n" ] } ], "source": [ "#YOUR CODE HERE\n", "# How many patients are there\n", "num_patients = df_patients.Id.nunique()\n", "print(f'amount of patients: {num_patients}')\n", "\n", "# How many covid patients are there\n", "covid_patients = df_conditions.PATIENT[df_conditions.CODE == 840539006].nunique()\n", "print(f'amount of covid patients: {covid_patients}')\n", "\n", "# How many patients do have a 'Hospital admission for isolation' encounter\n", "admitted_patients = df_encounters.Id[df_encounters.DESCRIPTION == \"Hospital admission for isolation (procedure)\"].nunique()\n", "print(f'amount of patients with \"Hospital admission for isolation encoutner\": {admitted_patients}')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 1.2 Test your solution\n", "The following function needs to be called. You can use this as a test. There are however more meaningful overviews \n", "you can create. " ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "def part1(num_pat, num_cov, num_admitted, num_died):\n", " print(f'There are {num_pat} patients in total')\n", " print(f'There are {num_cov} covid patients')\n", " print(f'There are {num_admitted} admitted patients')\n", " print(f'{num_died} patients died')\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Expected outcome" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "There are 12352 patients in total\n", "There are 8820 covid patients\n", "There are 1867 admitted patients\n", "2352 patients died\n" ] } ], "source": [ "died_patients = len(df_patients.Id[df_patients.DEATHDATE.notnull()].unique())\n", "\n", "part1(num_patients, covid_patients, admitted_patients, died_patients)" ] }, { "cell_type": "raw", "metadata": {}, "source": [ "There are 12352 patients in total\n", "There are 8820 covid patients\n", "There are 1867 admitted patients\n", "2352 patients died" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "---" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "## Part 2: Data Wrangling: set up the dataframe (30 pt)\n", "\n", "In this part we are going to combine data to create a dataframe with values of interest for the lab values analysis. \n", "\n", "We would like a dataframe containing the following information per record (only Covid patients!!!)\n", "\n", "- `PATIENT` - the ID of the covid patient\n", "- `days` - the number of days the patient is under observation\n", "- `CODE-Y` - the code of the observation \n", "- `VALUE` - the lab value of the observation\n", "\n", "where only the following observation codes needs to be selected:\n", "\n", "- `48065-7` Fibrin D-dimer FEU [Mass/volume] in Platelet poor plasma\n", "- `26881-3` Interleukin 6 [Mass/volume] in Serum or Plasma\n", "- `2276-4` Ferritin [Mass/volume] in Serum or Plasma\n", "- `89579-7` Troponin I.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\n", "- `731-0` Lymphocytes [#/volume] in Blood by Automated count\n", "- `14804-9` Lactate dehydrogenase [Enzymatic activity/volume] in Serum or Plasma by Lactate to pyruvate reaction\n", "\n", "The days information is not primarely available and needs to be calculated by substracting observation DATE - START. \n", "\n", "An example of such a dataframe is given below:" ] }, { "cell_type": "raw", "metadata": {}, "source": [ " days CODE-Y VALUE UNITS\n", "PATIENT \n", "00079a57-24a8-430f-b4f8-a1cf34f90060 0.0 14804-9 241.8 U/L\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 0.0 2276-4 489.5 ug/L\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 0.0 48065-7 0.4 ug/mL\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 0.0 731-0 1.1 10*3/uL\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 0.0 89579-7 3.4 pg/mL\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 1.0 731-0 1.1 10*3/uL\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 2.0 14804-9 233.7 U/L\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 2.0 2276-4 497.3 ug/L\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 2.0 48065-7 0.3 ug/mL\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 2.0 731-0 1.0 10*3/uL" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", "\n", " Hints\n", "\n", " \n", "
\n", "\n", "\n", "### 2.1 Code your solution" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "#YOUR CODE HERE\n", "# select all the patients with covid from the conditions table\n", "cov_patients = pd.DataFrame(df_conditions[df_conditions.CODE == 840539006])\n", "\n", "# combine conditions table (only covid patients) with the patient table into a df_cov_patients table\n", "df_cov_patients = pd.merge(left=cov_patients, right=df_patients, left_on='PATIENT', right_on='Id')\n", "\n", "# select the only the relevant lab observations from the observations table into a df_lab_obs table\n", "codes = ['48065-7', '26881-3', '2276-4', '89579-7', '731-0', '14804-9']\n", "df_lab_obs = df_observations[df_observations.CODE.isin(codes)]\n", "\n", "#merge the df_cov_patients table with the df_lab_obs table into a df_cov_patients_obs table\n", "df_cov_patients_obs = pd.merge(df_cov_patients, df_lab_obs, on='PATIENT')\n", "\n", "# clean the covid_patients_obs table (rename columns, select only relevant columns, sort, typecast, add days column)\n", "# calculate time delta\n", "df_cov_patients_obs = df_cov_patients_obs.astype({'DATE': 'datetime64[ns]', 'START': 'datetime64[ns]'})\n", "df_cov_patients_obs['days'] = df_cov_patients_obs.DATE - df_cov_patients_obs.START\n", "# select relevant columns\n", "df_cov_patients_obs = df_cov_patients_obs[['PATIENT', 'days', 'CODE_y', 'VALUE', 'UNITS']]\n", "# sort on patient and days\n", "df_cov_patients_obs = df_cov_patients_obs.sort_values(by=['PATIENT', 'days'])\n", "df_cov_patients_obs.set_index('PATIENT', inplace=True)" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ " days CODE_y VALUE UNITS\n", "PATIENT \n", "00079a57-24a8-430f-b4f8-a1cf34f90060 0 days 731-0 1.1 10*3/uL\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 0 days 48065-7 0.4 ug/mL\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 0 days 2276-4 489.5 ug/L\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 0 days 89579-7 3.4 pg/mL\n", "00079a57-24a8-430f-b4f8-a1cf34f90060 0 days 14804-9 241.8 U/L\n" ] } ], "source": [ "print(df_cov_patients_obs.head())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "---" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "## Part 3: Data Wrangling, split into survived and not survived (10 pt)\n", "\n", "Now we have the required data we would like to split the data into survived and not survived. First we fetch all the ids of the survived and deceased patients. We can use these ids to select the records of the survived patients and the patients that did not survived" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Your job is to split the data into survived and not survived records. There are multiple ways to do this. One way is the `.isin()` method" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "#the following code is given, RUN THIS CELL\n", "#get survived and deceased ids\n", "import numpy as np\n", "care_plans = df_careplans\n", "observations = df_observations\n", "patients = df_patients\n", "\n", "completed_isolation_patients = care_plans[(care_plans.CODE == 736376001) & (care_plans.STOP.notna()) \\\n", " & (care_plans.REASONCODE == 840539006)].PATIENT\n", "negative_covid_patient_ids = observations[(observations.CODE == '94531-1') \\\n", " & (observations.VALUE == 'Not detected (qualifier value)')].PATIENT.unique()\n", "survivor_ids = np.union1d(completed_isolation_patients, negative_covid_patient_ids)\n", "deceased_ids = patients[patients.DEATHDATE.notna()].Id" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "### 3.1 Code your solution" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "#YOUR CODE HERE\n", "df_survived = df_cov_patients_obs[df_cov_patients_obs.index.isin(survivor_ids)]\n", "df_not_survived = df_cov_patients_obs[df_cov_patients_obs.index.isin(deceased_ids)]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 3.2 Test your solution" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "patients records survived: 57303, patients records deceased 16793\n" ] } ], "source": [ "def test3(survived, died):\n", " print(f'patients records survived: {survived}, patients records deceased {died}')\n", "#call the test3\n", "test3(len(df_survived), len(df_not_survived))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Expected outcome" ] }, { "cell_type": "raw", "metadata": {}, "source": [ "patients records survived: 57303, patients records deceased 16793" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "---" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "## Part 4: Plot the data (20 pt)\n", "\n", "Create plots with the lab data, for each code one plot. Separate the survivors and the deceased by color. An example of such a plot is given below. You can create 6 plots in one grid (for each code one plot) or use a widget (for instance a drop down menu widget) to select a lab CODE. Plot on the x-axis the days, on the y-axis the VALUE. Use proper labels, titles and legends.\n", "\n", "\n", "\n", "\n", "### 4.1 Code your solution" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "codes_dict = {'48065-7': 'Fibrin D-dimer FEU in Platelet poor plasma', \n", " '26881-3': 'Interleukin 6 in Serum or Plasma',\n", " '2276-4': 'Ferritin in Serum or Plasma', \n", " '89579-7': 'Troponin I.cardiac in Serum or Plasma', \n", " '731-0': 'Lymphocytes in Blood', \n", " '14804-9': 'Lactate dehydrogenase in Serum or Plasma'}" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", " \n", " Loading BokehJS ...\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function now() {\n", " return new Date();\n", " }\n", "\n", " const force = true;\n", "\n", " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", " root._bokeh_onload_callbacks = [];\n", " root._bokeh_is_loading = undefined;\n", " }\n", "\n", "const JS_MIME_TYPE = 'application/javascript';\n", " const HTML_MIME_TYPE = 'text/html';\n", " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", " const CLASS_NAME = 'output_bokeh rendered_html';\n", "\n", " /**\n", " * Render data to the DOM node\n", " */\n", " function render(props, node) {\n", " const script = document.createElement(\"script\");\n", " node.appendChild(script);\n", " }\n", "\n", " /**\n", " * Handle when an output is cleared or removed\n", " */\n", " function handleClearOutput(event, handle) {\n", " const cell = handle.cell;\n", "\n", " const id = cell.output_area._bokeh_element_id;\n", " const server_id = cell.output_area._bokeh_server_id;\n", " // Clean up Bokeh references\n", " if (id != null && id in Bokeh.index) {\n", " Bokeh.index[id].model.document.clear();\n", " delete Bokeh.index[id];\n", " }\n", "\n", " if (server_id !== undefined) {\n", " // Clean up Bokeh references\n", " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", " cell.notebook.kernel.execute(cmd_clean, {\n", " iopub: {\n", " output: function(msg) {\n", " const id = msg.content.text.trim();\n", " if (id in Bokeh.index) {\n", " Bokeh.index[id].model.document.clear();\n", " delete Bokeh.index[id];\n", " }\n", " }\n", " }\n", " });\n", " // Destroy server and session\n", " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", " cell.notebook.kernel.execute(cmd_destroy);\n", " }\n", " }\n", "\n", " /**\n", " * Handle when a new output is added\n", " */\n", " function handleAddOutput(event, handle) {\n", " const output_area = handle.output_area;\n", " const output = handle.output;\n", "\n", " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", " return\n", " }\n", "\n", " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", "\n", " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", " // store reference to embed id on output_area\n", " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", " }\n", " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", " const bk_div = document.createElement(\"div\");\n", " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", " const script_attrs = bk_div.children[0].attributes;\n", " for (let i = 0; i < script_attrs.length; i++) {\n", " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", " }\n", " // store reference to server id on output_area\n", " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", " }\n", " }\n", "\n", " function register_renderer(events, OutputArea) {\n", "\n", " function append_mime(data, metadata, element) {\n", " // create a DOM node to render to\n", " const toinsert = this.create_output_subarea(\n", " metadata,\n", " CLASS_NAME,\n", " EXEC_MIME_TYPE\n", " );\n", " this.keyboard_manager.register_events(toinsert);\n", " // Render to node\n", " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", " render(props, toinsert[toinsert.length - 1]);\n", " element.append(toinsert);\n", " return toinsert\n", " }\n", "\n", " /* Handle when an output is cleared or removed */\n", " events.on('clear_output.CodeCell', handleClearOutput);\n", " events.on('delete.Cell', handleClearOutput);\n", "\n", " /* Handle when a new output is added */\n", " events.on('output_added.OutputArea', handleAddOutput);\n", "\n", " /**\n", " * Register the mime type and append_mime function with output_area\n", " */\n", " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", " /* Is output safe? */\n", " safe: true,\n", " /* Index of renderer in `output_area.display_order` */\n", " index: 0\n", " });\n", " }\n", "\n", " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", " if (root.Jupyter !== undefined) {\n", " const events = require('base/js/events');\n", " const OutputArea = require('notebook/js/outputarea').OutputArea;\n", "\n", " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", " register_renderer(events, OutputArea);\n", " }\n", " }\n", " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_failed_load = false;\n", " }\n", "\n", " const NB_LOAD_WARNING = {'data': {'text/html':\n", " \"
\\n\"+\n", " \"

\\n\"+\n", " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", " \"

\\n\"+\n", " \"\\n\"+\n", " \"\\n\"+\n", " \"from bokeh.resources import INLINE\\n\"+\n", " \"output_notebook(resources=INLINE)\\n\"+\n", " \"\\n\"+\n", " \"
\"}};\n", "\n", " function display_loaded() {\n", " const el = document.getElementById(\"1002\");\n", " if (el != null) {\n", " el.textContent = \"BokehJS is loading...\";\n", " }\n", " if (root.Bokeh !== undefined) {\n", " if (el != null) {\n", " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", " }\n", " } else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(display_loaded, 100)\n", " }\n", " }\n", "\n", " function run_callbacks() {\n", " try {\n", " root._bokeh_onload_callbacks.forEach(function(callback) {\n", " if (callback != null)\n", " callback();\n", " });\n", " } finally {\n", " delete root._bokeh_onload_callbacks\n", " }\n", " console.debug(\"Bokeh: all callbacks have finished\");\n", " }\n", "\n", " function load_libs(css_urls, js_urls, callback) {\n", " if (css_urls == null) css_urls = [];\n", " if (js_urls == null) js_urls = [];\n", "\n", " root._bokeh_onload_callbacks.push(callback);\n", " if (root._bokeh_is_loading > 0) {\n", " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", " return null;\n", " }\n", " if (js_urls == null || js_urls.length === 0) {\n", " run_callbacks();\n", " return null;\n", " }\n", " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", "\n", " function on_load() {\n", " root._bokeh_is_loading--;\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", " run_callbacks()\n", " }\n", " }\n", "\n", " function on_error(url) {\n", " console.error(\"failed to load \" + url);\n", " }\n", "\n", " for (let i = 0; i < css_urls.length; i++) {\n", " const url = css_urls[i];\n", " const element = document.createElement(\"link\");\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\n", " element.rel = \"stylesheet\";\n", " element.type = \"text/css\";\n", " element.href = url;\n", " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", " document.body.appendChild(element);\n", " }\n", "\n", " for (let i = 0; i < js_urls.length; i++) {\n", " const url = js_urls[i];\n", " const element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\n", " element.async = false;\n", " element.src = url;\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " };\n", "\n", " function inject_raw_css(css) {\n", " const element = document.createElement(\"style\");\n", " element.appendChild(document.createTextNode(css));\n", " document.body.appendChild(element);\n", " }\n", "\n", " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\"];\n", " const css_urls = [];\n", "\n", " const inline_js = [ function(Bokeh) {\n", " Bokeh.set_log_level(\"info\");\n", " },\n", "function(Bokeh) {\n", " }\n", " ];\n", "\n", " function run_inline_js() {\n", " if (root.Bokeh !== undefined || force === true) {\n", " for (let i = 0; i < inline_js.length; i++) {\n", " inline_js[i].call(root, root.Bokeh);\n", " }\n", "if (force === true) {\n", " display_loaded();\n", " }} else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(run_inline_js, 100);\n", " } else if (!root._bokeh_failed_load) {\n", " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", " root._bokeh_failed_load = true;\n", " } else if (force !== true) {\n", " const cell = $(document.getElementById(\"1002\")).parents('.cell').data().cell;\n", " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", " }\n", " }\n", "\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", " run_inline_js();\n", " } else {\n", " load_libs(css_urls, js_urls, function() {\n", " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", " run_inline_js();\n", " });\n", " }\n", "}(window));" ], "application/vnd.bokehjs_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n const el = document.getElementById(\"1002\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\nif (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(\"1002\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function embed_document(root) {\n", " const docs_json = {\"69ddc643-13f2-4570-865d-c6486a1963fd\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"tabs\":[{\"id\":\"1048\"},{\"id\":\"1094\"},{\"id\":\"1140\"},{\"id\":\"1186\"},{\"id\":\"1232\"},{\"id\":\"1278\"}]},\"id\":\"1279\",\"type\":\"Tabs\"},{\"attributes\":{},\"id\":\"1296\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1317\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"background_fill_color\":\"#20262B\",\"below\":[{\"id\":\"1106\"}],\"border_fill_color\":\"#15191C\",\"center\":[{\"id\":\"1109\"},{\"id\":\"1113\"}],\"left\":[{\"id\":\"1110\"}],\"outline_line_alpha\":0.25,\"outline_line_color\":\"#E0E0E0\",\"renderers\":[{\"id\":\"1132\"},{\"id\":\"1138\"}],\"title\":{\"id\":\"1096\"},\"toolbar\":{\"id\":\"1121\"},\"x_range\":{\"id\":\"1098\"},\"x_scale\":{\"id\":\"1102\"},\"y_range\":{\"id\":\"1100\"},\"y_scale\":{\"id\":\"1104\"}},\"id\":\"1095\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"1297\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"1318\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"1334\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.5},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.5},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1089\",\"type\":\"Circle\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1088\"},\"glyph\":{\"id\":\"1089\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1091\"},\"nonselection_glyph\":{\"id\":\"1090\"},\"view\":{\"id\":\"1093\"}},\"id\":\"1092\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1335\",\"type\":\"Selection\"},{\"attributes\":{\"axis\":{\"id\":\"1152\"},\"coordinates\":null,\"grid_line_alpha\":0.25,\"grid_line_color\":\"#E0E0E0\",\"group\":null,\"ticker\":null},\"id\":\"1155\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1194\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"1320\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1102\",\"type\":\"LinearScale\"},{\"attributes\":{\"child\":{\"id\":\"1095\"},\"title\":\"Ferritin\"},\"id\":\"1140\",\"type\":\"Panel\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1268\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1321\",\"type\":\"AllLabels\"},{\"attributes\":{\"source\":{\"id\":\"1220\"}},\"id\":\"1225\",\"type\":\"CDSView\"},{\"attributes\":{\"data\":{\"x\":[2,4,6,8,2,4,6,8,10,2,4,6,8,10,12,2,4,6,8,7,9,11,13,15,17,2,4,6,8,2,4,6,8,2,4,6,8,10,2,4,6,8,10,2,4,6,8,2,4,6,8,2,4,6,8,10,2,4,6,8,10,12,2,4,6,8,10,12,2,4,6,8,2,4,6,8,10,12],\"y\":[\"5.8\",\"5.2\",\"5.8\",\"5.2\",\"4.8\",\"5.5\",\"6.4\",\"6.1\",\"6.1\",\"5.1\",\"4.5\",\"6.7\",\"7.0\",\"5.9\",\"6.9\",\"5.4\",\"4.1\",\"5.4\",\"6.3\",\"4.5\",\"5.4\",\"5.5\",\"6.3\",\"5.1\",\"6.8\",\"4.2\",\"4.4\",\"6.1\",\"6.0\",\"4.6\",\"4.1\",\"6.1\",\"5.1\",\"4.3\",\"5.3\",\"7.0\",\"6.4\",\"6.5\",\"5.0\",\"5.2\",\"5.1\",\"6.8\",\"6.6\",\"4.4\",\"5.6\",\"6.2\",\"6.0\",\"4.3\",\"4.6\",\"5.3\",\"5.8\",\"5.5\",\"5.5\",\"6.3\",\"6.8\",\"5.5\",\"4.5\",\"4.8\",\"6.0\",\"5.4\",\"5.5\",\"5.5\",\"6.0\",\"4.6\",\"6.9\",\"6.5\",\"5.5\",\"6.7\",\"4.9\",\"5.0\",\"5.4\",\"5.4\",\"4.2\",\"5.2\",\"6.2\",\"5.1\",\"5.0\",\"5.5\"]},\"selected\":{\"id\":\"1330\"},\"selection_policy\":{\"id\":\"1329\"}},\"id\":\"1088\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1349\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"axis\":{\"id\":\"1106\"},\"coordinates\":null,\"grid_line_alpha\":0.25,\"grid_line_color\":\"#E0E0E0\",\"group\":null,\"ticker\":null},\"id\":\"1109\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1338\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1136\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1114\",\"type\":\"PanTool\"},{\"attributes\":{\"child\":{\"id\":\"1049\"},\"title\":\"Interleukin\"},\"id\":\"1094\",\"type\":\"Panel\"},{\"attributes\":{},\"id\":\"1350\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"1196\",\"type\":\"LinearScale\"},{\"attributes\":{\"tools\":[{\"id\":\"1206\"},{\"id\":\"1207\"},{\"id\":\"1208\"},{\"id\":\"1209\"},{\"id\":\"1210\"},{\"id\":\"1211\"}]},\"id\":\"1213\",\"type\":\"Toolbar\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Lymphocytes in Blood\",\"text_color\":\"#E0E0E0\",\"text_font\":\"Helvetica\",\"text_font_size\":\"1.15em\"},\"id\":\"1188\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"1192\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1322\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"background_fill_color\":\"#20262B\",\"below\":[{\"id\":\"1198\"}],\"border_fill_color\":\"#15191C\",\"center\":[{\"id\":\"1201\"},{\"id\":\"1205\"}],\"left\":[{\"id\":\"1202\"}],\"outline_line_alpha\":0.25,\"outline_line_color\":\"#E0E0E0\",\"renderers\":[{\"id\":\"1224\"},{\"id\":\"1230\"}],\"title\":{\"id\":\"1188\"},\"toolbar\":{\"id\":\"1213\"},\"x_range\":{\"id\":\"1190\"},\"x_scale\":{\"id\":\"1194\"},\"y_range\":{\"id\":\"1192\"},\"y_scale\":{\"id\":\"1196\"}},\"id\":\"1187\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"1104\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"1190\",\"type\":\"DataRange1d\"},{\"attributes\":{\"source\":{\"id\":\"1088\"}},\"id\":\"1093\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"1207\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"1323\",\"type\":\"Selection\"},{\"attributes\":{\"axis_label\":\"Lymphocytes (10*3/uL)\",\"axis_label_standoff\":10,\"axis_label_text_color\":\"#E0E0E0\",\"axis_label_text_font\":\"Helvetica\",\"axis_label_text_font_size\":\"1.25em\",\"axis_label_text_font_style\":\"normal\",\"axis_line_alpha\":0,\"axis_line_color\":\"#E0E0E0\",\"coordinates\":null,\"formatter\":{\"id\":\"1311\"},\"group\":null,\"major_label_policy\":{\"id\":\"1312\"},\"major_label_text_color\":\"#E0E0E0\",\"major_label_text_font\":\"Helvetica\",\"major_label_text_font_size\":\"1.025em\",\"major_tick_line_alpha\":0,\"major_tick_line_color\":\"#E0E0E0\",\"minor_tick_line_alpha\":0,\"minor_tick_line_color\":\"#E0E0E0\",\"ticker\":{\"id\":\"1203\"}},\"id\":\"1202\",\"type\":\"LinearAxis\"},{\"attributes\":{\"axis\":{\"id\":\"1202\"},\"coordinates\":null,\"dimension\":1,\"grid_line_alpha\":0.25,\"grid_line_color\":\"#E0E0E0\",\"group\":null,\"ticker\":null},\"id\":\"1205\",\"type\":\"Grid\"},{\"attributes\":{\"axis\":{\"id\":\"1060\"},\"coordinates\":null,\"grid_line_alpha\":0.25,\"grid_line_color\":\"#E0E0E0\",\"group\":null,\"ticker\":null},\"id\":\"1063\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1203\",\"type\":\"BasicTicker\"},{\"attributes\":{\"source\":{\"id\":\"1128\"}},\"id\":\"1133\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"1211\",\"type\":\"HelpTool\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"1120\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.5},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.5},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1129\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1206\",\"type\":\"PanTool\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1128\"},\"glyph\":{\"id\":\"1129\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1131\"},\"nonselection_glyph\":{\"id\":\"1130\"},\"view\":{\"id\":\"1133\"}},\"id\":\"1132\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"overlay\":{\"id\":\"1212\"}},\"id\":\"1208\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"1209\",\"type\":\"SaveTool\"},{\"attributes\":{\"data\":{\"x\":[0,2,4,6,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,0,2,4,5,6,7,8,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,0,2,4,0,2,4,6,8,0,2,4,6,8,9,10,11,12,0,2,4,5,6,7,8,0,2,4,5,6,7,8,9,10,0,2,4,5,6,7,8,9,10,0,2,4,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,0,2,4,5,6,7,8,9,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,0,2,4,6,8,9,10,11,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,0,2,4,6,0,2,4,6,8,0,2,4,6,7,8,9,10,0,2,4,0,2,4,5,6,7,8,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,0,2,4,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,5,6,7,0,2,4,6,0,2,4,5,6,7,8,9,10,11,12,13,14,5,7,9,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,8,0,2,4,6,7,8,9,10,11,0,2,4,6,0,2,4,5,6,7,8,9,10,11,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,0,2,4,0,2,4,7,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,0,2,4,5,6,7,8,9,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,0,2,4,5,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,7,8,9,10,0,2,4,6,7,8,9,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,7,8,9,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,5,6,7,8,9,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,5,7,9,11,12,13,14,15,16,17,18,19,20,0,2,4,5,6,7,8,9,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,7,8,9,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,0,2,4,6,0,2,4,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,0,2,4,5,6,7,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,0,2,4,0,2,4,6,7,8,9,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,3,5,7,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,0,2,4,0,2,4,6,8,9,10,11,12,0,2,4,5,6,7,8,9,0,2,4,6,7,8,9,10,11,7,9,11,13,14,15,16,17,18,19,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,9,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,5,7,9,10,11,12,13,0,2,4,6,0,2,5,7,9,10,11,12,13,14,15,16,17,18,19,0,2,4,5,6,7,8,9,10,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,9,10,11,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,0,2,4,6,8,9,10,11,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,0,2,4,6,8,9,10,11,12,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,0,2,4,5,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,0,2,4,5,6,7,8,9,10,11,5,7,9,0,2,4,6,7,8,9,10,0,2,4,6,8,0,2,4,5,6,7,0,2,4,6,8,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,0,2,0,2,4,6,0,2,4,5,6,7,8,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,9,10,11,0,2,4,6,8,0,2,4,0,2,4,5,6,7,8,9,0,2,4,5,6,7,8,7,9,11,12,13,14,15,16,17,0,2,4,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,0,2,4,6,7,8,9,10,0,2,4,6,8,9,10,11,13,14,15,16,17,0,2,4,5,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,0,2,4,6,8,9,10,11,12,13,14,0,2,4,5,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,0,2,4,6,8,9,10,11,12,13,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,0,2,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,0,2,4,5,6,7,0,2,4,5,6,7,8,9,10,11,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,7,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,0,2,4,6,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,5,6,7,8,9,10,11,12,0,2,4,5,6,7,8,9,10,11,12,13,0,3,5,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,0,3,5,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,0,2,4,6,8,6,8,10,12,14,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,0,2,4,0,2,4,0,2,4,5,6,7,8,9,0,2,4,6,8,9,10,11,12,13,0,2,4,0,2,4,5,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,7,8,9,10,0,2,4,5,6,7,8,5,7,0,2,0,2,4,6,7,8,9,10,11,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,5,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,6,8,10,12,14,5,7,9,11,7,9,11,13,14,15,16,17,18,19,20,21,22,23,0,2,4,5,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,7,8,9,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,0,2,4,5,6,7,8,9,0,2,4,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,5,6,7,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,0,2,4,6,8,0,2,5,6,7,8,9,0,2,4,6,8,9,10,11,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,0,2,4,5,6,7,8,9,10,11,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,0,2,4,6,7,8,9,10,11,0,2,4,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14],\"y\":[\"949.6\",\"824.3\",\"1189.8\",\"1560.4\",\"879.7\",\"894.4\",\"1010.1\",\"1155.6\",\"1112.3\",\"982.2\",\"1420.0\",\"1732.6\",\"1788.0\",\"1756.7\",\"1506.2\",\"1725.5\",\"1724.5\",\"1930.2\",\"1824.2\",\"1896.3\",\"2000\",\"949.5\",\"1081.3\",\"944.2\",\"1786.3\",\"1582.9\",\"1414.3\",\"1401.8\",\"921.4\",\"1069.7\",\"1019.2\",\"1592.6\",\"1603.2\",\"1645.8\",\"1680.6\",\"902.6\",\"947.3\",\"981.7\",\"1411.6\",\"1452.1\",\"1403.2\",\"1772.9\",\"1711.5\",\"1454.2\",\"1820.1\",\"1511.4\",\"449.7\",\"366.5\",\"429.3\",\"514.2\",\"528.8\",\"1153.4\",\"826.1\",\"1037.7\",\"1570.9\",\"1515.6\",\"1499.0\",\"1499.5\",\"1459.5\",\"1570.5\",\"1706.5\",\"1877.9\",\"1902.0\",\"1974.0\",\"1937.4\",\"2000\",\"851.2\",\"879.3\",\"888.1\",\"1683.3\",\"1466.1\",\"1639.8\",\"1406.9\",\"1658.4\",\"1749.6\",\"1501.8\",\"1554.7\",\"1659.6\",\"1952.8\",\"910.7\",\"966.2\",\"1009.0\",\"1546.3\",\"1514.9\",\"1571.7\",\"1633.3\",\"1721.5\",\"1663.8\",\"905.7\",\"1171.6\",\"938.5\",\"1543.3\",\"1634.0\",\"1414.2\",\"1531.2\",\"1677.0\",\"1878.9\",\"1847.2\",\"1892.7\",\"1182.4\",\"863.5\",\"997.2\",\"1649.0\",\"1782.2\",\"1081.0\",\"1195.5\",\"1189.7\",\"936.9\",\"872.7\",\"1123.4\",\"1620.6\",\"1535.1\",\"1699.1\",\"1415.1\",\"1834.5\",\"1771.6\",\"1738.8\",\"1833.2\",\"1995.7\",\"1831.2\",\"1077.1\",\"930.6\",\"1187.6\",\"1709.5\",\"1710.9\",\"1612.8\",\"1635.0\",\"1593.7\",\"1713.8\",\"1607.7\",\"1868.5\",\"1901.6\",\"1814.1\",\"1957.7\",\"818.3\",\"1062.1\",\"886.4\",\"1779.6\",\"1479.6\",\"1799.6\",\"1617.9\",\"1718.7\",\"1655.9\",\"1054.4\",\"951.0\",\"808.7\",\"944.7\",\"852.7\",\"879.9\",\"1486.4\",\"1711.3\",\"1114.0\",\"1169.6\",\"1037.7\",\"1601.7\",\"1780.5\",\"1631.1\",\"1556.0\",\"1815.3\",\"1615.6\",\"880.1\",\"1103.0\",\"993.1\",\"1523.8\",\"1734.8\",\"1641.3\",\"1449.6\",\"964.7\",\"1101.7\",\"1128.9\",\"1457.9\",\"1406.6\",\"1711.0\",\"1555.0\",\"1568.3\",\"1460.7\",\"978.5\",\"880.5\",\"914.5\",\"1691.4\",\"1560.8\",\"1748.0\",\"1487.9\",\"1745.6\",\"1628.0\",\"1054.5\",\"1193.1\",\"1091.7\",\"1539.9\",\"1468.2\",\"1742.3\",\"1412.1\",\"1764.7\",\"844.5\",\"860.1\",\"1119.6\",\"1486.5\",\"1457.2\",\"1494.5\",\"1459.1\",\"1522.4\",\"1598.8\",\"1789.5\",\"1114.1\",\"1189.9\",\"822.0\",\"1458.8\",\"1622.8\",\"1709.1\",\"1652.3\",\"1553.4\",\"885.8\",\"1060.4\",\"969.6\",\"1558.6\",\"1700.1\",\"1657.3\",\"1507.6\",\"1602.1\",\"1894.3\",\"1893.5\",\"1851.8\",\"1970.5\",\"1092.0\",\"930.0\",\"1096.8\",\"1670.0\",\"1401.5\",\"1683.8\",\"1417.7\",\"1612.7\",\"1785.3\",\"1575.5\",\"1013.0\",\"910.4\",\"1029.6\",\"1550.7\",\"1628.6\",\"1695.2\",\"1761.7\",\"1613.6\",\"1518.8\",\"1757.9\",\"830.2\",\"1055.3\",\"825.0\",\"1622.8\",\"1759.2\",\"1721.6\",\"1655.8\",\"1653.1\",\"1187.6\",\"1192.9\",\"1010.0\",\"1537.2\",\"1468.0\",\"1441.4\",\"1722.1\",\"1629.7\",\"1183.0\",\"928.7\",\"1033.0\",\"1517.5\",\"1403.4\",\"1109.3\",\"1049.1\",\"1002.5\",\"1504.5\",\"1726.0\",\"1636.9\",\"1660.8\",\"1686.7\",\"1505.9\",\"1660.8\",\"1898.6\",\"1850.3\",\"1868.5\",\"885.0\",\"824.9\",\"1176.7\",\"1581.6\",\"1603.5\",\"1718.1\",\"1721.7\",\"1544.1\",\"1183.2\",\"996.7\",\"1023.6\",\"1786.3\",\"1192.9\",\"1036.3\",\"1086.2\",\"1488.9\",\"1444.3\",\"852.3\",\"888.0\",\"1135.5\",\"1724.5\",\"1708.4\",\"1625.4\",\"1565.7\",\"1584.5\",\"867.1\",\"813.0\",\"1185.2\",\"888.5\",\"1100.9\",\"837.6\",\"1682.2\",\"1406.3\",\"1529.8\",\"1551.9\",\"1007.5\",\"1067.7\",\"915.0\",\"1561.6\",\"1460.1\",\"1794.8\",\"1739.4\",\"1764.7\",\"1693.1\",\"1864.4\",\"1834.0\",\"1916.2\",\"1865.2\",\"2000\",\"2000\",\"2000\",\"953.7\",\"1055.6\",\"875.9\",\"1726.8\",\"1454.6\",\"1724.4\",\"1629.0\",\"1400.9\",\"1588.5\",\"1638.9\",\"1616.6\",\"1908.9\",\"1869.7\",\"1901.8\",\"1140.3\",\"862.1\",\"893.4\",\"1542.5\",\"1441.6\",\"1495.1\",\"1728.8\",\"1598.2\",\"807.6\",\"1001.4\",\"921.2\",\"1499.2\",\"1773.0\",\"1400.6\",\"1698.1\",\"1545.0\",\"1685.0\",\"1719.9\",\"1957.6\",\"917.6\",\"1081.9\",\"879.0\",\"1739.7\",\"1639.7\",\"1577.7\",\"1577.6\",\"1574.8\",\"1865.0\",\"1504.9\",\"1924.5\",\"1896.7\",\"1890.0\",\"2000\",\"963.4\",\"1060.0\",\"1009.9\",\"1684.9\",\"1434.0\",\"1569.4\",\"1534.3\",\"1830.1\",\"854.7\",\"961.5\",\"878.1\",\"1571.9\",\"1516.8\",\"1764.4\",\"1779.5\",\"1518.6\",\"1610.0\",\"1015.1\",\"1047.7\",\"1146.5\",\"1622.4\",\"1799.7\",\"1553.6\",\"1683.6\",\"1537.5\",\"1567.1\",\"1683.8\",\"1836.5\",\"1831.3\",\"1966.8\",\"1179.1\",\"834.2\",\"966.1\",\"1462.5\",\"966.7\",\"1166.4\",\"1125.0\",\"1688.2\",\"1672.2\",\"1439.4\",\"1643.9\",\"1582.4\",\"1557.3\",\"1534.3\",\"1983.1\",\"1962.0\",\"1988.3\",\"2000\",\"2000\",\"923.5\",\"1077.0\",\"1163.7\",\"1731.6\",\"1779.7\",\"1749.0\",\"842.3\",\"1136.9\",\"1081.1\",\"1733.1\",\"1128.1\",\"952.7\",\"920.2\",\"1604.2\",\"1477.5\",\"1582.5\",\"1535.3\",\"1458.4\",\"1631.3\",\"1570.4\",\"1679.3\",\"1884.7\",\"1947.5\",\"913.9\",\"1179.1\",\"1113.8\",\"1122.5\",\"1107.1\",\"1071.3\",\"1479.2\",\"1494.2\",\"1695.4\",\"1756.9\",\"1678.1\",\"1721.8\",\"1548.6\",\"1852.7\",\"1804.7\",\"1807.3\",\"1827.3\",\"862.5\",\"1161.5\",\"973.4\",\"1525.4\",\"1786.2\",\"1459.4\",\"1530.5\",\"1752.9\",\"1559.2\",\"1802.9\",\"1771.7\",\"1809.5\",\"999.1\",\"978.4\",\"1108.5\",\"1569.3\",\"1616.5\",\"1077.0\",\"1138.7\",\"1088.8\",\"1592.3\",\"1484.9\",\"1768.2\",\"1621.7\",\"1586.7\",\"1748.3\",\"911.2\",\"875.7\",\"997.2\",\"1401.5\",\"992.5\",\"1158.0\",\"917.2\",\"1621.6\",\"1452.9\",\"1623.7\",\"1535.6\",\"1710.4\",\"1417.1\",\"1601.2\",\"982.5\",\"910.2\",\"1168.0\",\"1754.1\",\"1416.0\",\"1529.1\",\"1711.4\",\"1583.3\",\"1789.3\",\"1543.4\",\"1729.9\",\"1096.7\",\"979.3\",\"1006.6\",\"1469.9\",\"1520.6\",\"1497.4\",\"1567.4\",\"1556.4\",\"1539.5\",\"1693.7\",\"1971.3\",\"1933.3\",\"1052.7\",\"1105.3\",\"1063.1\",\"1466.2\",\"844.8\",\"1034.1\",\"839.1\",\"1072.1\",\"1153.2\",\"818.8\",\"1565.8\",\"923.0\",\"1142.3\",\"1053.6\",\"1654.9\",\"1406.0\",\"1786.7\",\"1532.2\",\"1802.8\",\"1735.5\",\"1770.9\",\"1960.3\",\"1865.7\",\"1919.3\",\"2000\",\"2000\",\"1049.2\",\"998.1\",\"922.7\",\"1496.8\",\"1501.2\",\"863.4\",\"925.9\",\"1047.8\",\"1774.2\",\"1450.4\",\"1526.6\",\"1643.0\",\"1784.4\",\"1180.3\",\"893.9\",\"1080.2\",\"1718.5\",\"1409.7\",\"1674.3\",\"1703.1\",\"1641.4\",\"1829.5\",\"1555.1\",\"932.7\",\"1129.5\",\"809.2\",\"1637.3\",\"1787.0\",\"1760.3\",\"1766.4\",\"1538.5\",\"1522.1\",\"972.0\",\"859.1\",\"1115.8\",\"1584.4\",\"1197.6\",\"836.1\",\"859.2\",\"1441.6\",\"1637.6\",\"1623.7\",\"1546.9\",\"1639.6\",\"1528.0\",\"1785.4\",\"1934.4\",\"1895.5\",\"1853.0\",\"2000\",\"1096.5\",\"947.3\",\"835.8\",\"1715.9\",\"1683.1\",\"1613.1\",\"1649.0\",\"1712.9\",\"1079.8\",\"1172.0\",\"1092.9\",\"1477.0\",\"1718.7\",\"1424.3\",\"1792.0\",\"1576.8\",\"414.6\",\"418.2\",\"423.9\",\"528.5\",\"471.4\",\"518.7\",\"641.6\",\"579.8\",\"490.9\",\"400.6\",\"402.4\",\"402.9\",\"401.1\",\"335.7\",\"1037.2\",\"889.9\",\"1078.5\",\"1467.8\",\"1541.6\",\"1457.7\",\"1786.5\",\"1644.2\",\"1730.0\",\"1560.7\",\"830.1\",\"893.4\",\"831.5\",\"1682.4\",\"1641.5\",\"1470.8\",\"1426.1\",\"1689.9\",\"1770.5\",\"1630.7\",\"1622.4\",\"1901.3\",\"1987.8\",\"1978.1\",\"2000\",\"1018.8\",\"945.8\",\"1042.5\",\"1791.9\",\"1612.9\",\"1721.2\",\"1511.3\",\"1730.8\",\"1725.7\",\"1803.8\",\"1864.7\",\"1836.0\",\"1038.0\",\"1046.1\",\"1153.7\",\"1421.3\",\"1425.8\",\"837.9\",\"881.4\",\"983.4\",\"1732.0\",\"1462.3\",\"1476.6\",\"1767.9\",\"893.4\",\"1107.7\",\"830.1\",\"1510.6\",\"1683.6\",\"1637.5\",\"1671.0\",\"1426.8\",\"1671.2\",\"1629.6\",\"1886.9\",\"951.3\",\"964.2\",\"856.7\",\"1453.7\",\"1769.6\",\"1732.6\",\"1655.3\",\"1474.8\",\"1168.1\",\"892.4\",\"1176.0\",\"1796.5\",\"1621.5\",\"1577.8\",\"1412.0\",\"1794.6\",\"1891.5\",\"1513.8\",\"1700.3\",\"1967.0\",\"1066.8\",\"809.6\",\"892.0\",\"1692.1\",\"1758.2\",\"1694.7\",\"1423.2\",\"1771.7\",\"1564.2\",\"1807.0\",\"1623.4\",\"1892.0\",\"902.4\",\"864.3\",\"1181.7\",\"1791.0\",\"1673.3\",\"1591.6\",\"1490.1\",\"1411.5\",\"1762.7\",\"1738.4\",\"817.3\",\"1052.1\",\"800.6\",\"1718.5\",\"916.6\",\"981.1\",\"936.4\",\"1670.4\",\"1404.3\",\"1585.7\",\"1688.1\",\"1720.0\",\"1669.6\",\"1714.0\",\"1959.5\",\"1937.7\",\"944.2\",\"1176.3\",\"1112.0\",\"1729.5\",\"1412.1\",\"1775.1\",\"1670.8\",\"1572.1\",\"1045.0\",\"950.3\",\"1064.9\",\"1667.2\",\"1570.5\",\"1439.7\",\"1674.6\",\"1622.3\",\"1714.9\",\"1872.2\",\"1762.0\",\"1731.1\",\"1848.9\",\"1056.0\",\"1184.1\",\"1190.3\",\"1522.7\",\"1546.1\",\"1684.4\",\"1678.1\",\"1756.4\",\"1888.9\",\"1583.9\",\"1896.1\",\"1815.2\",\"1823.6\",\"2000\",\"378.3\",\"380.8\",\"481.0\",\"531.7\",\"515.9\",\"481.2\",\"575.7\",\"999.3\",\"1000.1\",\"1065.6\",\"1773.1\",\"1174.9\",\"1033.2\",\"857.6\",\"1415.5\",\"1431.8\",\"1630.1\",\"1547.2\",\"1710.7\",\"1803.1\",\"1822.1\",\"1839.4\",\"1861.9\",\"1857.6\",\"1137.1\",\"1135.8\",\"975.3\",\"1631.9\",\"1752.8\",\"1581.4\",\"1494.1\",\"1422.6\",\"1872.5\",\"1522.3\",\"1638.5\",\"1800.8\",\"1944.9\",\"1098.9\",\"1158.2\",\"1154.4\",\"1450.3\",\"1682.4\",\"1041.6\",\"1099.3\",\"844.0\",\"1620.7\",\"1652.3\",\"1428.1\",\"1688.0\",\"1525.4\",\"1895.8\",\"1571.3\",\"1693.9\",\"1847.7\",\"1817.7\",\"841.7\",\"1144.4\",\"1007.4\",\"1799.0\",\"1580.3\",\"1628.9\",\"1710.4\",\"1460.4\",\"1074.5\",\"1129.9\",\"1051.1\",\"1547.2\",\"903.1\",\"912.3\",\"1129.5\",\"1480.1\",\"1460.8\",\"1560.8\",\"1540.9\",\"1883.8\",\"1596.1\",\"1761.6\",\"1968.2\",\"1866.6\",\"1975.0\",\"1035.9\",\"1174.7\",\"827.8\",\"1733.2\",\"1561.8\",\"1767.7\",\"1765.4\",\"1587.2\",\"1688.2\",\"1697.3\",\"1819.6\",\"1878.6\",\"1166.6\",\"865.1\",\"853.5\",\"1575.9\",\"1586.7\",\"1768.9\",\"1752.4\",\"1801.4\",\"1850.8\",\"1572.9\",\"1907.8\",\"1808.2\",\"1122.7\",\"1082.9\",\"816.0\",\"1669.4\",\"1502.6\",\"840.1\",\"904.5\",\"1123.0\",\"1461.6\",\"1560.2\",\"1535.2\",\"1637.8\",\"1582.9\",\"1659.8\",\"1767.8\",\"1837.3\",\"1808.4\",\"1846.2\",\"1834.6\",\"969.7\",\"1006.4\",\"966.8\",\"1471.7\",\"1629.8\",\"1542.7\",\"1472.5\",\"1890.0\",\"1823.0\",\"1843.0\",\"1974.8\",\"1840.8\",\"1152.4\",\"1101.9\",\"1053.4\",\"1573.8\",\"1654.7\",\"1453.6\",\"1744.4\",\"1739.3\",\"1768.2\",\"1842.0\",\"1963.5\",\"1976.9\",\"1843.9\",\"2000\",\"1188.9\",\"963.7\",\"1114.0\",\"1001.6\",\"1009.5\",\"1136.1\",\"921.0\",\"1054.1\",\"1165.3\",\"1417.9\",\"1749.8\",\"1730.9\",\"1550.4\",\"1701.8\",\"1633.3\",\"1716.0\",\"1983.4\",\"866.1\",\"917.5\",\"872.3\",\"1757.6\",\"1417.3\",\"1472.7\",\"1601.4\",\"1090.6\",\"841.2\",\"1025.9\",\"1577.3\",\"1402.6\",\"1526.5\",\"1773.5\",\"1647.4\",\"1582.1\",\"1813.9\",\"1936.9\",\"1896.1\",\"1923.3\",\"2000\",\"2000\",\"872.7\",\"830.9\",\"1044.4\",\"1567.2\",\"1795.1\",\"1654.5\",\"1582.3\",\"1820.2\",\"1732.7\",\"1730.1\",\"1855.6\",\"1913.5\",\"1888.7\",\"2000\",\"1091.9\",\"1070.9\",\"812.5\",\"1724.7\",\"1429.2\",\"952.6\",\"1092.0\",\"828.2\",\"1694.1\",\"1682.0\",\"1441.7\",\"1507.4\",\"1421.5\",\"1849.6\",\"1719.1\",\"1548.3\",\"1974.3\",\"1881.0\",\"1914.6\",\"906.6\",\"1075.3\",\"1007.5\",\"1434.9\",\"1629.2\",\"1624.5\",\"1710.3\",\"1532.3\",\"1753.8\",\"1628.3\",\"1043.4\",\"823.4\",\"814.1\",\"1469.9\",\"1428.8\",\"1701.8\",\"1558.5\",\"1611.5\",\"1578.3\",\"1674.9\",\"956.0\",\"991.2\",\"1023.4\",\"1656.6\",\"1728.1\",\"873.6\",\"1029.2\",\"1038.8\",\"1430.6\",\"1759.6\",\"1732.3\",\"1512.0\",\"1863.9\",\"1818.3\",\"1740.4\",\"1145.7\",\"802.8\",\"980.1\",\"1432.6\",\"1091.3\",\"1165.3\",\"1188.8\",\"1467.6\",\"1613.6\",\"1620.8\",\"1774.8\",\"1464.3\",\"1840.4\",\"1861.8\",\"1601.9\",\"1098.7\",\"1036.9\",\"1168.8\",\"1761.7\",\"1460.5\",\"1068.7\",\"1153.5\",\"937.2\",\"1682.1\",\"1674.8\",\"1712.5\",\"1407.7\",\"1772.1\",\"1775.5\",\"823.7\",\"954.4\",\"974.0\",\"1466.0\",\"1412.8\",\"1079.6\",\"1024.4\",\"888.3\",\"1744.6\",\"1790.0\",\"1750.8\",\"1715.0\",\"1878.1\",\"1611.6\",\"1844.6\",\"1953.2\",\"1810.2\",\"944.4\",\"1017.7\",\"1021.8\",\"979.9\",\"834.7\",\"997.2\",\"1555.2\",\"1062.8\",\"868.3\",\"1024.6\",\"1072.3\",\"833.3\",\"1159.6\",\"1526.7\",\"1740.0\",\"1757.0\",\"1619.7\",\"1603.9\",\"1766.4\",\"1855.4\",\"1522.6\",\"1180.5\",\"961.4\",\"1110.4\",\"1714.0\",\"1787.2\",\"1480.9\",\"1734.9\",\"1535.2\",\"1509.3\",\"1802.5\",\"1146.0\",\"865.2\",\"1152.8\",\"1680.0\",\"1764.9\",\"1777.3\",\"1471.4\",\"987.4\",\"1000.5\",\"1062.2\",\"1623.1\",\"1784.4\",\"1499.1\",\"1712.2\",\"1756.6\",\"1514.7\",\"1676.7\",\"1540.0\",\"1985.9\",\"1990.1\",\"1884.1\",\"2000\",\"825.0\",\"809.0\",\"1128.8\",\"1472.8\",\"1655.8\",\"1557.6\",\"1482.3\",\"1666.3\",\"1574.7\",\"1732.3\",\"1562.7\",\"1874.0\",\"1917.7\",\"1150.6\",\"907.0\",\"913.6\",\"1539.8\",\"1499.7\",\"1777.1\",\"1789.3\",\"1637.5\",\"1507.3\",\"1841.4\",\"1823.6\",\"1967.9\",\"1167.4\",\"898.5\",\"950.9\",\"1765.3\",\"1404.8\",\"1794.6\",\"1466.2\",\"982.5\",\"859.9\",\"969.6\",\"1494.1\",\"1533.3\",\"1457.9\",\"1633.9\",\"1787.3\",\"1655.0\",\"1862.0\",\"1927.2\",\"1988.6\",\"1134.0\",\"910.2\",\"1048.5\",\"1794.3\",\"1566.6\",\"1534.0\",\"1479.6\",\"1545.4\",\"1868.3\",\"1014.5\",\"1053.1\",\"1053.1\",\"1641.0\",\"1782.9\",\"1527.1\",\"1620.0\",\"1405.9\",\"1739.6\",\"1531.2\",\"1531.2\",\"1809.7\",\"1950.5\",\"876.4\",\"1176.4\",\"861.1\",\"844.9\",\"963.8\",\"1051.3\",\"1076.0\",\"814.1\",\"1004.3\",\"1709.5\",\"1625.3\",\"1450.4\",\"1462.7\",\"1172.0\",\"943.6\",\"863.9\",\"947.8\",\"800.4\",\"967.3\",\"1690.8\",\"1479.8\",\"1641.7\",\"1479.1\",\"1830.7\",\"1685.3\",\"1814.6\",\"1992.2\",\"1818.2\",\"1121.9\",\"1131.9\",\"925.6\",\"1004.5\",\"1017.3\",\"989.8\",\"1703.7\",\"1485.3\",\"1501.5\",\"1627.9\",\"1582.7\",\"1798.1\",\"1740.7\",\"1871.8\",\"1852.8\",\"1872.5\",\"2000\",\"930.9\",\"1129.5\",\"1041.8\",\"1678.5\",\"1467.1\",\"1681.3\",\"1420.4\",\"1513.9\",\"1661.9\",\"1833.6\",\"1874.0\",\"1964.5\",\"1861.8\",\"2000\",\"1067.4\",\"1093.5\",\"1064.8\",\"1585.2\",\"1141.6\",\"833.4\",\"1066.9\",\"1459.8\",\"1789.5\",\"1769.8\",\"1468.2\",\"1662.2\",\"1763.6\",\"1511.9\",\"1898.7\",\"1919.0\",\"1935.7\",\"977.9\",\"952.4\",\"1051.3\",\"1717.0\",\"1585.1\",\"1748.2\",\"1665.4\",\"1616.5\",\"1838.5\",\"1514.4\",\"1739.7\",\"1041.3\",\"843.2\",\"881.0\",\"1766.3\",\"1559.0\",\"1458.5\",\"1581.3\",\"1839.9\",\"1678.3\",\"1668.5\",\"1189.5\",\"835.0\",\"844.9\",\"925.4\",\"1153.2\",\"1136.6\",\"1644.7\",\"1648.7\",\"1623.2\",\"1495.0\",\"1778.2\",\"1869.4\",\"887.5\",\"906.7\",\"867.1\",\"1650.5\",\"1452.4\",\"1675.9\",\"1747.2\",\"1779.8\",\"1162.5\",\"818.4\",\"882.5\",\"1629.3\",\"1636.5\",\"1798.5\",\"1484.4\",\"1412.8\",\"1750.4\",\"912.3\",\"1052.6\",\"942.8\",\"1472.6\",\"1539.8\",\"1550.6\",\"1763.6\",\"1558.6\",\"1632.9\",\"1796.9\",\"829.7\",\"874.8\",\"1197.3\",\"1747.6\",\"1430.1\",\"1518.7\",\"1722.7\",\"1493.8\",\"1447.6\",\"1618.7\",\"1552.3\",\"1055.3\",\"1119.1\",\"1130.6\",\"1645.1\",\"1598.7\",\"1171.9\",\"873.0\",\"1019.3\",\"1549.9\",\"1661.9\",\"1577.8\",\"1505.6\",\"1810.3\",\"1544.4\",\"1609.2\",\"1909.0\",\"1970.6\",\"1965.3\",\"2000\",\"2000\",\"1093.5\",\"1044.7\",\"833.0\",\"1498.2\",\"1775.9\",\"1763.2\",\"1416.4\",\"1604.4\",\"1707.7\",\"1551.8\",\"876.3\",\"1182.7\",\"853.0\",\"1653.1\",\"1694.4\",\"1508.9\",\"1435.4\",\"1442.1\",\"1645.1\",\"1657.1\",\"1776.9\",\"1859.1\",\"1800.4\",\"1171.7\",\"1198.7\",\"800.7\",\"1475.7\",\"1152.3\",\"1151.6\",\"940.9\",\"1570.4\",\"1548.9\",\"1506.7\",\"1604.5\",\"1428.1\",\"1739.2\",\"1695.9\",\"1569.5\",\"955.1\",\"1107.4\",\"1024.2\",\"1656.0\",\"1077.3\",\"1112.8\",\"1153.6\",\"1795.3\",\"1600.8\",\"1768.0\",\"1726.6\",\"1783.3\",\"1756.3\",\"1693.4\",\"1737.8\",\"408.0\",\"461.1\",\"498.3\",\"529.8\",\"512.0\",\"1123.2\",\"840.5\",\"1099.3\",\"1605.4\",\"1552.8\",\"848.7\",\"1087.7\",\"1040.4\",\"1696.4\",\"1619.4\",\"1517.0\",\"1799.4\",\"1706.3\",\"1634.0\",\"1522.8\",\"1860.0\",\"1958.1\",\"1942.8\",\"841.0\",\"907.0\",\"1079.5\",\"826.6\",\"822.2\",\"970.3\",\"1762.6\",\"1450.7\",\"889.6\",\"846.4\",\"873.2\",\"1489.4\",\"1693.6\",\"1709.3\",\"1682.5\",\"1644.3\",\"1538.9\",\"1617.0\",\"1563.6\",\"1070.7\",\"1184.6\",\"911.5\",\"1648.2\",\"1664.0\",\"1642.3\",\"1577.4\",\"1736.8\",\"1798.7\",\"1829.0\",\"1847.1\",\"1891.6\",\"1816.2\",\"1823.5\",\"2000\",\"1172.5\",\"1026.8\",\"1163.1\",\"1473.0\",\"1539.1\",\"1752.0\",\"1557.0\",\"1713.6\",\"1684.0\",\"1749.8\",\"1926.0\",\"1809.3\",\"1892.3\",\"2000\",\"827.5\",\"1069.6\",\"1020.1\",\"1490.5\",\"1479.1\",\"1536.5\",\"1596.1\",\"1625.0\",\"1766.4\",\"1877.9\",\"1831.1\",\"1848.4\",\"1874.2\",\"2000\",\"2000\",\"2000\",\"1171.5\",\"944.2\",\"871.9\",\"1469.4\",\"1560.0\",\"1635.6\",\"1409.9\",\"1549.2\",\"1666.0\",\"1842.2\",\"1661.5\",\"961.2\",\"1086.4\",\"1190.8\",\"1573.6\",\"1645.1\",\"1594.4\",\"1620.4\",\"1592.9\",\"1704.5\",\"1551.5\",\"1815.2\",\"1936.1\",\"1931.9\",\"2000\",\"918.9\",\"1166.3\",\"1087.6\",\"1465.3\",\"1626.9\",\"1585.5\",\"1691.5\",\"1443.2\",\"1615.8\",\"1864.7\",\"1733.0\",\"1614.9\",\"1899.1\",\"896.2\",\"908.2\",\"854.8\",\"1764.4\",\"1440.5\",\"1759.2\",\"1661.1\",\"1564.9\",\"1877.9\",\"1725.3\",\"1998.3\",\"1864.1\",\"1927.7\",\"2000\",\"2000\",\"1045.7\",\"891.8\",\"828.5\",\"1627.3\",\"1650.6\",\"1553.8\",\"1410.8\",\"1073.4\",\"1090.8\",\"1102.1\",\"1797.9\",\"957.2\",\"881.9\",\"983.3\",\"1557.5\",\"1743.2\",\"1689.1\",\"1585.1\",\"1564.3\",\"1698.2\",\"1519.0\",\"1917.7\",\"1824.1\",\"1879.5\",\"2000\",\"2000\",\"800.5\",\"1186.0\",\"1159.4\",\"1729.1\",\"1432.6\",\"1773.1\",\"1618.3\",\"1445.3\",\"1564.6\",\"1058.3\",\"899.8\",\"963.4\",\"1479.0\",\"1655.5\",\"1537.6\",\"1601.0\",\"1449.3\",\"1706.7\",\"1761.9\",\"1852.5\",\"1861.0\",\"1862.6\",\"1150.7\",\"1175.2\",\"823.8\",\"1425.1\",\"1451.0\",\"1136.7\",\"1040.7\",\"931.4\",\"1764.7\",\"1523.9\",\"1647.5\",\"1727.0\",\"1590.5\",\"1187.0\",\"1065.2\",\"824.8\",\"1762.6\",\"1550.5\",\"1649.8\",\"1638.7\",\"1694.0\",\"1627.5\",\"1809.6\",\"1600.3\",\"1701.5\",\"916.4\",\"802.9\",\"1184.4\",\"1654.8\",\"1502.6\",\"1488.6\",\"1603.6\",\"1569.0\",\"1724.9\",\"1625.5\",\"1927.6\",\"1993.7\",\"1962.9\",\"2000\",\"953.1\",\"1115.8\",\"1052.7\",\"1708.0\",\"1075.2\",\"1154.9\",\"848.1\",\"1453.1\",\"1536.2\",\"1656.1\",\"1524.8\",\"1788.5\",\"1870.2\",\"1708.5\",\"1869.6\",\"803.4\",\"967.8\",\"1097.1\",\"1553.1\",\"1097.1\",\"1137.2\",\"1147.6\",\"1475.5\",\"1767.0\",\"1690.8\",\"1597.5\",\"1704.8\",\"896.7\",\"1163.3\",\"894.3\",\"1585.2\",\"1679.2\",\"1586.4\",\"1445.9\",\"1623.7\",\"1797.3\",\"1560.0\",\"1644.8\",\"1873.3\",\"1930.9\",\"1128.5\",\"1147.4\",\"1092.8\",\"1494.6\",\"1636.0\",\"1455.4\",\"1571.3\",\"1783.2\",\"850.0\",\"803.4\",\"1046.6\",\"1450.3\",\"1658.2\",\"1075.3\",\"866.3\",\"1139.7\",\"1095.2\",\"870.0\",\"821.5\",\"1428.5\",\"1411.8\",\"1442.8\",\"1761.7\",\"1797.4\",\"1688.9\",\"868.7\",\"906.5\",\"921.0\",\"1679.2\",\"1730.7\",\"1489.8\",\"1798.7\",\"1405.1\",\"1574.8\",\"1562.1\",\"1864.5\",\"1817.0\",\"1897.1\",\"899.9\",\"1017.7\",\"1140.0\",\"1545.9\",\"1126.3\",\"894.4\",\"894.6\",\"1748.0\",\"938.7\",\"1077.3\",\"910.9\",\"1739.0\",\"1698.4\",\"1411.5\",\"1732.0\",\"1620.0\",\"1594.7\",\"1600.4\",\"1782.4\",\"1812.4\",\"1882.9\",\"1021.6\",\"1040.3\",\"1175.4\",\"1088.3\",\"1189.0\",\"1119.1\",\"1660.0\",\"1706.7\",\"1414.1\",\"1688.5\",\"1776.3\",\"1401.9\",\"1035.5\",\"1192.5\",\"1019.7\",\"1479.5\",\"1587.2\",\"1708.1\",\"1791.8\",\"1630.3\",\"1659.6\",\"1778.1\",\"1715.5\",\"1018.6\",\"1177.9\",\"976.3\",\"1700.1\",\"1751.9\",\"1473.4\",\"1461.4\",\"1885.5\",\"1574.9\",\"1841.7\",\"1931.1\",\"1859.4\",\"1939.9\",\"2000\",\"2000\",\"2000\",\"1005.7\",\"1045.8\",\"1139.8\",\"1725.1\",\"1711.4\",\"1608.8\",\"1648.9\",\"1728.2\",\"1704.7\",\"1560.0\",\"1890.4\",\"1949.4\",\"970.9\",\"1069.4\",\"955.6\",\"1144.1\",\"976.0\",\"1167.2\",\"977.0\",\"1018.2\",\"1025.3\",\"845.0\",\"1171.9\",\"940.7\",\"1487.2\",\"1457.2\",\"1731.7\",\"1409.9\",\"1726.6\",\"1617.0\",\"1039.2\",\"1005.6\",\"1191.6\",\"1549.7\",\"1483.4\",\"1637.0\",\"1775.0\",\"1539.1\",\"1796.8\",\"1510.9\",\"1805.0\",\"1959.1\",\"1839.8\",\"2000\",\"972.2\",\"1026.9\",\"861.2\",\"1596.2\",\"1471.1\",\"1634.9\",\"1479.0\",\"1777.4\",\"1893.6\",\"1519.2\",\"1828.3\",\"1935.6\",\"1043.3\",\"1051.0\",\"875.3\",\"1621.2\",\"1629.2\",\"1570.9\",\"1536.1\",\"1545.9\",\"1842.1\",\"1504.7\",\"1774.0\",\"979.5\",\"1020.4\",\"963.1\",\"1683.2\",\"1445.5\",\"1526.2\",\"1672.7\",\"1430.7\",\"891.1\",\"1184.9\",\"1025.9\",\"1605.0\",\"1401.8\",\"1740.2\",\"1743.9\",\"1757.1\",\"1742.5\",\"1631.9\",\"871.7\",\"946.7\",\"1018.0\",\"1094.8\",\"969.1\",\"971.7\",\"1552.8\",\"1745.4\",\"1707.3\",\"1727.8\",\"1755.9\",\"1026.5\",\"1189.6\",\"834.5\",\"1440.7\",\"1659.1\",\"903.7\",\"821.2\",\"1028.9\",\"1516.3\",\"1620.3\",\"1726.5\",\"822.9\",\"1085.1\",\"1191.8\",\"1658.4\",\"1657.0\",\"1048.7\",\"1014.9\",\"845.9\",\"1764.5\",\"1547.2\",\"1610.6\",\"1756.1\",\"1425.9\",\"1703.7\",\"1839.1\",\"1789.0\",\"1529.3\",\"1858.8\",\"1068.2\",\"984.6\",\"1162.6\",\"1687.8\",\"1749.2\",\"1555.5\",\"1727.5\",\"1589.3\",\"1656.8\",\"1667.4\",\"1193.3\",\"816.8\",\"805.3\",\"1528.7\",\"1430.9\",\"1647.7\",\"1481.3\",\"1575.4\",\"1784.1\",\"1673.8\",\"966.3\",\"857.3\",\"1174.0\",\"1588.9\",\"1403.1\",\"1617.6\",\"1443.1\",\"1431.3\",\"1571.8\",\"1747.1\",\"1796.2\",\"1531.9\",\"1120.3\",\"965.2\",\"1114.2\",\"1661.2\",\"1632.3\",\"1139.0\",\"1043.4\",\"1067.5\",\"1789.8\",\"1615.4\",\"1799.9\",\"1757.6\",\"1657.8\",\"1697.2\",\"1705.7\",\"953.0\",\"1001.8\",\"1097.8\",\"1541.2\",\"1528.3\",\"1771.9\",\"1626.5\",\"1431.9\",\"1733.2\",\"1876.9\",\"1125.9\",\"865.2\",\"1062.6\",\"899.8\",\"996.6\",\"1537.6\",\"967.3\",\"857.9\",\"974.3\",\"1727.8\",\"1516.2\",\"1737.6\",\"1681.2\",\"937.9\",\"970.7\",\"1170.6\",\"1524.0\",\"1605.2\",\"1631.7\",\"1420.9\",\"1769.4\",\"1617.0\",\"1794.4\",\"1909.1\",\"1813.4\",\"1865.2\",\"837.5\",\"976.8\",\"855.4\",\"1627.4\",\"1685.1\",\"1523.5\",\"1742.3\",\"1557.2\",\"1404.3\",\"1601.0\",\"936.2\",\"899.8\",\"838.9\",\"1780.7\",\"1584.0\",\"1137.9\",\"1038.9\",\"808.7\",\"872.2\",\"840.9\",\"986.2\",\"1709.8\",\"1789.3\",\"1727.7\",\"1515.1\",\"1772.2\",\"1060.4\",\"1043.0\",\"1010.0\",\"1644.7\",\"1666.5\",\"1677.1\",\"1580.7\",\"846.6\",\"1088.2\",\"961.8\",\"1718.0\",\"1564.2\",\"1578.4\",\"1769.7\",\"1630.4\",\"1650.7\",\"1186.9\",\"931.8\",\"1152.1\",\"1181.2\",\"1153.1\",\"839.9\",\"1596.4\",\"852.4\",\"1192.2\",\"808.1\",\"1745.4\",\"1509.1\",\"1459.3\",\"1594.2\",\"1701.2\",\"1531.5\",\"1783.5\",\"1947.3\",\"1955.1\",\"1880.8\",\"1150.0\",\"1137.6\",\"935.6\",\"1610.5\",\"1171.8\",\"977.3\",\"950.3\",\"1611.6\",\"1430.4\",\"1644.3\",\"1415.0\",\"1583.6\",\"820.0\",\"907.5\",\"979.4\",\"1504.4\",\"1684.9\",\"1761.8\",\"1566.7\",\"1814.7\",\"1520.4\",\"1824.2\",\"1997.4\",\"1869.2\",\"1844.1\",\"1151.0\",\"1114.1\",\"981.6\",\"1622.2\",\"1792.3\",\"1721.4\",\"1497.3\",\"1437.8\",\"1532.0\",\"1512.2\",\"981.7\",\"955.8\",\"904.9\",\"1750.8\",\"1750.4\",\"1705.9\",\"1490.1\",\"1505.8\",\"1570.9\",\"1500.5\",\"1937.2\",\"1840.9\",\"1988.0\",\"2000\",\"2000\",\"1046.7\",\"1143.6\",\"1043.0\",\"980.8\",\"1123.3\",\"909.8\",\"1761.3\",\"1420.4\",\"1690.6\",\"1715.8\",\"1815.8\",\"1660.1\",\"1547.7\",\"1897.9\",\"1024.3\",\"829.2\",\"823.4\",\"1606.1\",\"1772.5\",\"1630.8\",\"1477.7\",\"1657.2\",\"1610.1\",\"965.4\",\"965.8\",\"820.5\",\"1713.6\",\"1462.8\",\"1687.0\",\"1786.1\",\"1674.9\",\"1826.2\",\"1520.7\",\"1897.9\",\"1972.4\",\"1844.2\",\"1848.6\",\"2000\",\"1126.1\",\"1100.0\",\"920.7\",\"1455.2\",\"1743.4\",\"1716.9\",\"856.3\",\"829.8\",\"1077.7\",\"1586.0\",\"1543.7\",\"1424.4\",\"1524.8\",\"1531.7\",\"1798.6\",\"1618.9\",\"843.6\",\"939.6\",\"1081.4\",\"857.7\",\"1061.2\",\"1197.6\",\"1136.5\",\"873.2\",\"882.7\",\"1437.8\",\"1715.0\",\"1634.6\",\"1486.8\",\"1896.5\",\"1607.5\",\"1569.9\",\"1953.8\",\"1939.4\",\"1864.4\",\"969.2\",\"1198.9\",\"807.8\",\"1486.0\",\"1469.8\",\"1702.3\",\"1466.3\",\"1428.8\",\"1681.9\",\"1581.3\",\"1598.5\",\"1186.8\",\"823.7\",\"1072.3\",\"1579.9\",\"1419.3\",\"900.8\",\"1069.1\",\"884.0\",\"809.1\",\"1048.1\",\"1510.0\",\"1782.4\",\"1499.1\",\"1611.3\",\"1557.7\",\"1655.5\",\"1512.8\",\"1789.4\",\"1831.2\",\"830.3\",\"1136.7\",\"1028.1\",\"1603.0\",\"997.4\",\"933.3\",\"1184.4\",\"1794.6\",\"1675.7\",\"1641.0\",\"1595.9\",\"1854.6\",\"1588.1\",\"1745.9\",\"1937.4\",\"1997.7\",\"1970.4\",\"1074.5\",\"1144.1\",\"851.3\",\"1566.5\",\"1532.8\",\"1633.0\",\"1495.2\",\"1713.6\",\"1778.1\",\"1857.5\",\"1819.7\",\"1795.7\",\"1911.3\",\"1027.2\",\"1053.7\",\"944.8\",\"1542.9\",\"1739.8\",\"1631.8\",\"1736.0\",\"1763.9\",\"1770.5\",\"1740.3\",\"1984.9\",\"1829.2\",\"1050.7\",\"1099.8\",\"1168.1\",\"1537.4\",\"1712.6\",\"1599.0\",\"1633.0\",\"1765.4\",\"1822.8\",\"1825.5\",\"1817.5\",\"1831.6\",\"1922.5\",\"2000\",\"1074.7\",\"1117.8\",\"1005.5\",\"966.6\",\"1176.3\",\"1075.2\",\"1566.6\",\"1643.4\",\"1613.3\",\"891.3\",\"905.0\",\"877.6\",\"1702.6\",\"1707.7\",\"1743.1\",\"1760.1\",\"1612.2\",\"1733.8\",\"1786.4\",\"1185.4\",\"1101.3\",\"838.3\",\"1529.4\",\"1714.3\",\"1767.4\",\"1494.4\",\"1639.8\",\"1605.6\",\"1606.9\",\"1532.6\",\"1925.0\",\"1986.7\",\"875.0\",\"873.6\",\"965.3\",\"1670.6\",\"1483.9\",\"1686.5\",\"1639.8\",\"1763.6\",\"1668.2\",\"1664.2\",\"1919.3\",\"1812.6\",\"887.4\",\"1178.0\",\"1036.7\",\"1764.6\",\"1746.5\",\"1555.1\",\"1685.1\",\"1652.9\",\"1845.9\",\"1894.6\",\"1852.5\",\"1975.1\",\"866.4\",\"1077.9\",\"1007.0\",\"1541.5\",\"1557.8\",\"1544.7\",\"1601.3\",\"1698.8\",\"1608.2\",\"1188.9\",\"1189.9\",\"1055.0\",\"1603.1\",\"1685.2\",\"1527.1\",\"1463.8\",\"1781.6\",\"1830.5\",\"1774.2\",\"1828.4\",\"1857.4\",\"1920.5\",\"2000\",\"2000\",\"929.7\",\"1149.6\",\"884.4\",\"1525.8\",\"1614.5\",\"1665.3\",\"1444.6\",\"1761.3\",\"1730.8\",\"1609.4\",\"1837.2\",\"1893.2\",\"1833.3\",\"968.3\",\"1100.7\",\"1117.5\",\"1783.9\",\"1426.5\",\"1608.7\",\"1500.8\",\"1898.9\",\"1580.8\",\"971.3\",\"820.4\",\"1083.2\",\"1712.3\",\"933.5\",\"928.2\",\"911.2\",\"1503.8\",\"1194.9\",\"942.5\",\"1163.3\",\"1762.5\",\"1779.1\",\"1748.8\",\"1565.0\",\"1724.3\",\"1523.3\",\"1742.4\",\"1834.7\",\"948.9\",\"1168.5\",\"1176.0\",\"1031.7\",\"917.1\",\"920.6\",\"1590.1\",\"1404.8\",\"1140.5\",\"808.5\",\"961.1\",\"1735.1\",\"1798.3\",\"1784.5\",\"1513.1\",\"1852.3\",\"1695.9\",\"1785.1\",\"1135.6\",\"1085.4\",\"889.0\",\"1736.3\",\"1755.3\",\"811.4\",\"1072.3\",\"1108.4\",\"1436.5\",\"1429.9\",\"1503.7\",\"1416.0\",\"1678.5\",\"1408.1\",\"1645.8\",\"1720.1\",\"1513.1\",\"1868.7\",\"886.7\",\"1077.4\",\"1049.2\",\"1516.2\",\"1676.2\",\"1670.7\",\"1634.8\",\"1470.9\",\"1817.9\",\"1863.2\",\"1877.9\",\"1978.1\",\"1879.3\",\"1022.8\",\"1057.1\",\"1196.7\",\"1763.7\",\"1427.9\",\"1453.2\",\"1585.9\",\"1665.0\",\"1763.0\",\"1800.8\",\"1746.5\",\"1134.8\",\"838.6\",\"900.3\",\"1501.8\",\"1762.3\",\"1639.3\",\"1401.1\",\"1651.2\",\"1500.8\",\"1812.0\",\"1745.8\",\"1655.0\",\"1027.5\",\"823.5\",\"1018.0\",\"1729.2\",\"1747.8\",\"1574.4\",\"1401.3\",\"1793.6\",\"1535.7\",\"1564.1\",\"1536.4\",\"1988.7\",\"1950.5\",\"1075.2\",\"989.9\",\"922.2\",\"1610.3\",\"1505.9\",\"1521.2\",\"1590.2\",\"1475.7\",\"1662.1\",\"1846.1\",\"804.7\",\"922.1\",\"932.8\",\"1441.3\",\"1450.6\",\"1713.3\",\"1587.9\",\"1665.9\",\"1784.5\",\"1686.2\",\"1525.1\",\"1126.8\",\"1195.6\",\"1179.7\",\"1709.2\",\"1420.0\",\"1790.9\",\"1601.6\",\"1422.7\",\"854.0\",\"1007.4\",\"1191.3\",\"1635.2\",\"1731.5\",\"1187.9\",\"851.9\",\"1104.7\",\"1600.5\",\"1786.0\",\"990.7\",\"958.1\",\"1079.0\",\"1572.7\",\"1787.5\",\"1689.3\",\"1573.3\",\"1425.0\",\"1813.0\",\"1790.5\",\"1839.8\",\"1980.0\",\"1869.4\",\"1870.1\",\"862.5\",\"1056.0\",\"922.2\",\"1696.3\",\"1639.0\",\"1484.6\",\"1651.4\",\"1727.0\",\"1614.2\",\"1763.4\",\"1643.1\",\"1901.7\",\"1804.1\",\"1950.9\",\"1078.1\",\"1182.3\",\"817.1\",\"1581.0\",\"1737.4\",\"1655.0\",\"1798.3\",\"1776.8\",\"1847.3\",\"1819.0\",\"1095.1\",\"865.4\",\"1143.1\",\"1040.4\",\"1063.2\",\"868.2\",\"936.2\",\"987.4\",\"1109.6\",\"1662.5\",\"1605.6\",\"1530.5\",\"1478.4\",\"1584.8\",\"878.5\",\"1034.8\",\"1141.0\",\"1622.2\",\"1456.2\",\"1713.3\",\"1445.4\",\"1721.8\",\"1552.3\",\"1547.6\",\"860.6\",\"1008.7\",\"1055.9\",\"1061.9\",\"987.0\",\"1130.5\",\"1452.7\",\"1589.3\",\"1426.6\",\"1576.3\",\"1473.0\",\"1646.9\",\"1695.9\",\"1718.9\",\"1524.1\",\"1903.4\",\"1904.4\",\"1064.8\",\"890.8\",\"1040.6\",\"1740.9\",\"1609.8\",\"1110.2\",\"1158.5\",\"1048.7\",\"1401.4\",\"1499.1\",\"1512.0\",\"1482.7\",\"1744.3\",\"960.7\",\"1053.6\",\"1022.7\",\"1448.2\",\"1696.6\",\"1726.3\",\"1547.9\",\"846.5\",\"1157.7\",\"842.2\",\"1192.1\",\"903.1\",\"1013.7\",\"972.0\",\"1537.8\",\"1590.4\",\"1596.8\",\"1604.6\",\"1784.7\",\"1672.8\",\"806.2\",\"1096.7\",\"1093.2\",\"1696.9\",\"932.4\",\"861.4\",\"1182.0\",\"1675.5\",\"1593.7\",\"1454.1\",\"1501.1\",\"1581.5\",\"1756.7\",\"1604.1\",\"1817.3\",\"1898.8\",\"1878.3\",\"2000\",\"2000\",\"1129.7\",\"1035.0\",\"835.4\",\"1554.4\",\"1519.1\",\"1629.0\",\"1665.8\",\"1768.6\",\"1594.5\",\"1608.6\",\"1875.0\",\"1847.8\",\"1872.5\",\"2000\",\"2000\",\"2000\",\"974.4\",\"1050.3\",\"1198.5\",\"1406.6\",\"959.4\",\"1090.5\",\"1032.5\",\"1544.0\",\"1548.2\",\"1579.0\",\"1510.9\",\"1683.1\",\"1791.0\",\"1868.1\",\"1593.9\",\"1879.6\",\"1076.0\",\"820.7\",\"893.1\",\"1551.0\",\"1734.4\",\"1549.3\",\"1442.0\",\"1692.9\",\"1654.3\",\"1652.2\",\"979.3\",\"853.7\",\"1005.5\",\"1580.2\",\"1577.2\",\"1462.1\",\"1584.0\",\"1673.9\",\"1638.2\",\"1787.0\",\"1832.9\",\"1802.7\",\"1983.4\",\"1018.4\",\"916.9\",\"858.3\",\"1053.3\",\"1072.9\",\"875.3\",\"1744.8\",\"1654.8\",\"1713.3\",\"1421.5\",\"1562.0\",\"1787.6\",\"1835.5\",\"1828.5\",\"1949.4\",\"1834.8\",\"818.9\",\"1104.9\",\"1060.7\",\"1628.9\",\"1458.6\",\"1569.6\",\"1672.3\",\"1127.1\",\"919.4\",\"804.7\",\"1618.2\",\"1720.4\",\"862.4\",\"1076.8\",\"862.2\",\"1710.3\",\"872.3\",\"1073.3\",\"856.8\",\"1577.8\",\"1795.0\",\"1600.4\",\"1772.7\",\"1783.4\",\"1588.2\",\"1623.6\",\"1646.6\",\"1822.6\",\"1908.5\",\"1857.0\",\"1019.9\",\"1065.3\",\"1141.3\",\"1756.2\",\"1543.5\",\"1592.2\",\"1526.1\",\"1499.5\",\"1717.1\",\"1669.1\",\"1612.6\",\"1848.5\",\"1961.7\",\"1882.0\",\"909.7\",\"870.9\",\"1062.4\",\"1784.6\",\"1564.9\",\"1760.8\",\"1584.5\",\"1739.7\",\"1885.4\",\"1829.8\",\"1895.4\",\"1830.7\",\"1864.3\",\"2000\",\"2000\",\"878.3\",\"870.4\",\"1156.9\",\"1626.6\",\"1427.5\",\"1473.0\",\"1436.5\",\"1774.5\",\"1597.3\",\"1736.3\",\"1869.3\",\"1879.5\",\"960.9\",\"1030.6\",\"813.4\",\"1425.0\",\"1571.8\",\"1626.4\",\"1707.7\",\"1777.0\",\"1733.9\",\"1828.4\",\"813.2\",\"824.1\",\"873.9\",\"1561.2\",\"1562.4\",\"981.4\",\"1002.4\",\"1115.1\",\"1556.5\",\"1537.3\",\"1708.8\",\"1633.4\",\"1881.0\",\"1855.5\",\"1559.5\",\"1809.7\",\"1904.8\",\"1978.2\",\"2000\",\"2000\",\"1142.0\",\"1070.1\",\"902.6\",\"1684.7\",\"1529.7\",\"1439.6\",\"1533.0\",\"988.0\",\"1145.1\",\"802.9\",\"1677.8\",\"1528.4\",\"1628.5\",\"1673.7\",\"1679.2\",\"1744.2\",\"1872.1\",\"1668.0\",\"813.1\",\"873.5\",\"1122.0\",\"1620.3\",\"1615.5\",\"1647.9\",\"1633.0\",\"1410.7\",\"1742.6\",\"1856.6\",\"1667.6\",\"1834.5\",\"1868.2\",\"1951.7\",\"2000\",\"910.2\",\"951.9\",\"1084.2\",\"1589.3\",\"875.7\",\"903.3\",\"1195.4\",\"1754.5\",\"1683.0\",\"1715.3\",\"1557.3\",\"1563.7\",\"1106.4\",\"999.0\",\"965.6\",\"1024.2\",\"1015.6\",\"921.8\",\"1764.2\",\"1598.2\",\"1787.3\",\"1641.3\",\"1747.5\",\"1685.9\",\"1690.2\",\"1649.0\",\"1804.0\",\"836.8\",\"891.9\",\"1142.9\",\"1781.1\",\"1722.1\",\"1702.7\",\"1504.0\",\"1652.6\",\"1737.3\",\"1791.4\",\"1959.9\",\"1961.4\",\"1823.4\",\"2000\",\"2000\",\"802.7\",\"840.5\",\"1088.4\",\"1702.6\",\"1413.4\",\"1642.9\",\"932.8\",\"949.5\",\"923.8\",\"1643.2\",\"1448.9\",\"1504.5\",\"1414.4\",\"1593.1\",\"1854.1\",\"1861.6\",\"1793.5\",\"1918.6\",\"1982.0\",\"1995.3\",\"2000\",\"921.3\",\"1115.7\",\"953.0\",\"1562.7\",\"1418.8\",\"1650.2\",\"1496.3\",\"1142.8\",\"805.9\",\"1197.2\",\"1418.5\",\"1491.4\",\"1131.8\",\"1031.8\",\"1701.8\",\"1622.2\",\"1699.4\",\"1573.9\",\"1563.3\",\"932.0\",\"1162.0\",\"826.3\",\"1665.0\",\"1543.7\",\"1469.9\",\"1568.6\",\"1730.5\",\"1015.1\",\"1180.5\",\"1119.6\",\"1762.6\",\"817.2\",\"1058.1\",\"845.7\",\"1774.2\",\"1686.1\",\"1673.9\",\"1526.7\",\"1401.7\",\"1749.1\",\"1751.3\",\"1652.6\",\"1854.7\",\"1855.9\",\"1919.6\",\"896.4\",\"1161.5\",\"1055.4\",\"1618.1\",\"1752.0\",\"1560.9\",\"1627.7\",\"837.3\",\"1073.3\",\"1187.1\",\"1753.4\",\"1588.9\",\"1637.2\",\"1444.3\",\"1648.1\",\"1553.5\",\"1553.9\",\"1661.4\",\"1808.6\",\"1119.3\",\"864.4\",\"1168.0\",\"871.1\",\"1152.8\",\"955.4\",\"1509.9\",\"1467.4\",\"1578.4\",\"1755.4\",\"1624.7\",\"1837.0\",\"1837.1\",\"1537.7\",\"1181.4\",\"1045.6\",\"919.0\",\"1698.3\",\"1505.8\",\"1559.1\",\"1521.9\",\"1707.2\",\"1779.6\",\"1776.0\",\"1770.2\",\"950.6\",\"1176.7\",\"1143.2\",\"1606.0\",\"1652.0\",\"1401.5\",\"1512.1\",\"1564.4\",\"1827.8\",\"934.3\",\"900.0\",\"1040.9\",\"1682.6\",\"1534.9\",\"1770.8\",\"1769.8\",\"1743.8\",\"1414.2\",\"1842.1\",\"1029.0\",\"933.5\",\"804.9\",\"829.7\",\"1031.6\",\"1114.2\",\"954.8\",\"1011.5\",\"1162.0\",\"1537.2\",\"1498.9\",\"1490.4\",\"1457.6\",\"1864.4\",\"1564.6\",\"1545.6\",\"1938.2\",\"1998.1\",\"1994.9\",\"2000\",\"968.0\",\"1064.9\",\"821.0\",\"1607.7\",\"981.9\",\"882.4\",\"1109.2\",\"1407.6\",\"1469.6\",\"1757.9\",\"1626.7\",\"1589.9\",\"1704.7\",\"1063.1\",\"1074.5\",\"1104.9\",\"915.1\",\"923.3\",\"817.4\",\"1523.7\",\"1489.2\",\"1456.7\",\"1471.7\",\"1662.3\",\"1621.9\",\"1516.4\",\"1645.0\",\"1766.9\",\"915.9\",\"1129.3\",\"986.4\",\"1455.3\",\"1500.5\",\"1452.8\",\"1562.8\",\"1656.1\",\"1848.4\",\"1672.4\",\"1788.6\",\"1906.7\"]},\"selected\":{\"id\":\"1333\"},\"selection_policy\":{\"id\":\"1332\"}},\"id\":\"1128\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1210\",\"type\":\"ResetTool\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Ferritin in Serum or Plasma\",\"text_color\":\"#E0E0E0\",\"text_font\":\"Helvetica\",\"text_font_size\":\"1.15em\"},\"id\":\"1096\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"1100\",\"type\":\"DataRange1d\"},{\"attributes\":{\"background_fill_color\":\"#20262B\",\"below\":[{\"id\":\"1060\"}],\"border_fill_color\":\"#15191C\",\"center\":[{\"id\":\"1063\"},{\"id\":\"1067\"}],\"left\":[{\"id\":\"1064\"}],\"outline_line_alpha\":0.25,\"outline_line_color\":\"#E0E0E0\",\"renderers\":[{\"id\":\"1086\"},{\"id\":\"1092\"}],\"title\":{\"id\":\"1050\"},\"toolbar\":{\"id\":\"1075\"},\"x_range\":{\"id\":\"1052\"},\"x_scale\":{\"id\":\"1056\"},\"y_range\":{\"id\":\"1054\"},\"y_scale\":{\"id\":\"1058\"}},\"id\":\"1049\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1131\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1299\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1130\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1058\",\"type\":\"LinearScale\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.5},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.5},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1037\",\"type\":\"Circle\"},{\"attributes\":{\"source\":{\"id\":\"1134\"}},\"id\":\"1139\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"1300\",\"type\":\"AllLabels\"},{\"attributes\":{\"source\":{\"id\":\"1036\"}},\"id\":\"1041\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"1337\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1036\"},\"glyph\":{\"id\":\"1037\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1039\"},\"nonselection_glyph\":{\"id\":\"1038\"},\"view\":{\"id\":\"1041\"}},\"id\":\"1040\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1302\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Troponin I.cardiac in Serum or Plasma\",\"text_color\":\"#E0E0E0\",\"text_font\":\"Helvetica\",\"text_font_size\":\"1.15em\"},\"id\":\"1142\",\"type\":\"Title\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1091\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1223\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1146\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1115\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1222\",\"type\":\"Circle\"},{\"attributes\":{\"background_fill_color\":\"#20262B\",\"below\":[{\"id\":\"1152\"}],\"border_fill_color\":\"#15191C\",\"center\":[{\"id\":\"1155\"},{\"id\":\"1159\"}],\"left\":[{\"id\":\"1156\"}],\"outline_line_alpha\":0.25,\"outline_line_color\":\"#E0E0E0\",\"renderers\":[{\"id\":\"1178\"},{\"id\":\"1184\"}],\"title\":{\"id\":\"1142\"},\"toolbar\":{\"id\":\"1167\"},\"x_range\":{\"id\":\"1144\"},\"x_scale\":{\"id\":\"1148\"},\"y_range\":{\"id\":\"1146\"},\"y_scale\":{\"id\":\"1150\"}},\"id\":\"1141\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"1303\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"1324\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.5},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.5},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1221\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1245\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"1325\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"1144\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1038\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1274\",\"type\":\"Circle\"},{\"attributes\":{\"source\":{\"id\":\"1266\"}},\"id\":\"1271\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"1118\",\"type\":\"ResetTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.5},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.5},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1267\",\"type\":\"Circle\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1266\"},\"glyph\":{\"id\":\"1267\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1269\"},\"nonselection_glyph\":{\"id\":\"1268\"},\"view\":{\"id\":\"1271\"}},\"id\":\"1270\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1027\",\"type\":\"HelpTool\"},{\"attributes\":{},\"id\":\"1022\",\"type\":\"PanTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1039\",\"type\":\"Circle\"},{\"attributes\":{\"data\":{\"x\":[0,2,4,6,8,10,11,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,6,8,10,12,14,16,18,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,11,12,13,15,16,17,18,19,0,2,4,6,8,10,11,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,16,17,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,7,9,11,13,15,16,17,18,19,20,21,22,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,7,9,11,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,7,9,11,13,15,17,19,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,0,3,5,7,9,11,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,20,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,20,0,3,5,7,9,11,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,6,8,10,12,14,16,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,7,9,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,6,8,10,12,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,0,2,4,6,8,10,12,5,7,9,11,13,15,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,9,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,3,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,0,2,4,6,8,10,11,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,7,9,11,13,15,17,19,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,6,8,10,12,14,16,18,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,3,5,7,9,11,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,0,2,4,6,8,10,11,12,0,2,4,6,8,0,3,5,7,9,10,11,12,13,14,15,0,2,4,6,8,5,7,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,0,2,4,6,8,10,0,2,4,6,8,10,8,10,12,14,16,18,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,5,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,6,8,10,12,14,16,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,11,12,13,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,5,7,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,7,9,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,17,0,2,4,6,8,5,7,9,11,13,15,0,2,4,6,8,0,2,4,7,9,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,6,8,10,12,14,16,18,19,20,21,22,23,24,25,26,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,9,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,6,8,10,12,14,16,0,2,4,6,8,0,2,4,6,8,0,2,4,6,9,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,11,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,16,18,20,0,2,4,6,8,10,5,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,11,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,9,0,2,4,6,8,10,0,2,4,7,9,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,9,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,0,2,4,7,9,11,0,2,5,7,9,11,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,7,9,11,13,15,17,19,6,8,10,12,14,16,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,6,8,10,12,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,5,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,10,12,5,7,9,11,13,15,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,7,9,11,13,15,17,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,5,7,9,11,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,5,7,9,11,13,15,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,7,9,11,13,15,17,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,17,19,20,21,22,23,24,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,6,8,10,12,14,16,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,3,5,7,9,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,6,8,10,12,14,16,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,17,0,2,4,6,8,10,11,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,5,7,9,11,13,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,5,7,9,11,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,7,9,11,13,15,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,3,5,7,9,11,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,6,8,10,12,14,16,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,17,0,3,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,3,5,7,9,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,3,5,7,9,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,12,0,3,5,7,9,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,7,9,11,13,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,7,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,17,19,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,12,5,7,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,20,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,7,9,11,13,15,17,19,0,2,4,6,8,10,12,7,9,11,13,15,0,2,4,6,9,11,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,7,9,11,13,15,17,19,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8],\"y\":[\"489.5\",\"497.3\",\"480.4\",\"463.9\",\"514.2\",\"585.7\",\"570.7\",\"625.1\",\"418.8\",\"466.0\",\"485.6\",\"508.4\",\"495.2\",\"535.2\",\"593.2\",\"311.1\",\"399.0\",\"319.5\",\"504.3\",\"484.1\",\"544.0\",\"611.6\",\"487.9\",\"409.5\",\"324.6\",\"525.5\",\"539.4\",\"592.6\",\"330.7\",\"319.9\",\"339.7\",\"521.0\",\"528.9\",\"532.0\",\"399.7\",\"311.4\",\"460.7\",\"469.0\",\"471.8\",\"596.4\",\"636.7\",\"453.6\",\"346.6\",\"305.7\",\"506.3\",\"518.9\",\"480.6\",\"613.1\",\"392.3\",\"433.0\",\"342.0\",\"451.5\",\"488.6\",\"534.5\",\"594.9\",\"441.4\",\"437.0\",\"462.9\",\"520.7\",\"455.0\",\"556.8\",\"618.0\",\"449.7\",\"366.5\",\"429.3\",\"514.2\",\"528.8\",\"349.4\",\"336.1\",\"328.3\",\"494.5\",\"468.6\",\"423.0\",\"475.5\",\"432.5\",\"515.1\",\"544.1\",\"535.9\",\"352.9\",\"355.1\",\"323.7\",\"508.5\",\"511.2\",\"304.3\",\"483.1\",\"487.6\",\"543.0\",\"453.2\",\"558.9\",\"631.0\",\"385.5\",\"494.7\",\"347.1\",\"508.8\",\"543.0\",\"572.0\",\"627.0\",\"347.1\",\"409.6\",\"498.4\",\"527.8\",\"525.7\",\"376.8\",\"455.3\",\"446.9\",\"453.9\",\"461.1\",\"325.1\",\"334.5\",\"489.8\",\"451.1\",\"518.9\",\"395.0\",\"351.2\",\"448.6\",\"534.8\",\"548.7\",\"537.0\",\"398.0\",\"317.6\",\"449.3\",\"463.7\",\"526.5\",\"468.2\",\"477.2\",\"498.1\",\"518.6\",\"490.7\",\"446.0\",\"414.1\",\"469.8\",\"543.9\",\"457.0\",\"581.1\",\"550.8\",\"612.3\",\"365.4\",\"461.6\",\"329.5\",\"485.7\",\"474.0\",\"454.7\",\"339.1\",\"488.3\",\"549.1\",\"528.7\",\"595.2\",\"598.2\",\"460.7\",\"449.2\",\"491.0\",\"506.4\",\"476.8\",\"594.6\",\"373.8\",\"495.2\",\"456.0\",\"485.0\",\"487.5\",\"557.0\",\"396.7\",\"454.3\",\"317.1\",\"546.3\",\"534.4\",\"410.0\",\"439.7\",\"334.2\",\"520.6\",\"529.2\",\"363.0\",\"459.9\",\"355.7\",\"517.2\",\"542.8\",\"590.5\",\"561.5\",\"341.8\",\"432.8\",\"311.6\",\"476.8\",\"523.8\",\"516.7\",\"597.3\",\"459.3\",\"374.0\",\"495.2\",\"497.5\",\"489.1\",\"589.0\",\"380.1\",\"455.4\",\"404.0\",\"486.2\",\"518.6\",\"551.3\",\"467.4\",\"331.0\",\"313.0\",\"499.4\",\"485.7\",\"548.0\",\"605.6\",\"437.4\",\"340.0\",\"410.8\",\"545.9\",\"467.8\",\"327.7\",\"353.9\",\"314.0\",\"502.2\",\"525.0\",\"502.6\",\"631.6\",\"484.9\",\"301.4\",\"465.8\",\"481.6\",\"455.4\",\"480.6\",\"470.4\",\"389.2\",\"414.7\",\"530.4\",\"484.1\",\"412.4\",\"400.0\",\"391.1\",\"533.8\",\"541.5\",\"494.2\",\"312.9\",\"399.2\",\"477.1\",\"509.6\",\"450.8\",\"398.8\",\"409.1\",\"496.9\",\"457.8\",\"504.5\",\"595.0\",\"637.9\",\"632.6\",\"556.1\",\"411.4\",\"466.2\",\"449.5\",\"401.9\",\"369.5\",\"487.2\",\"304.0\",\"412.2\",\"521.0\",\"472.3\",\"450.3\",\"556.8\",\"474.2\",\"428.4\",\"448.8\",\"540.3\",\"452.0\",\"541.3\",\"640.8\",\"462.7\",\"394.2\",\"495.6\",\"529.5\",\"518.1\",\"548.5\",\"621.9\",\"483.7\",\"475.7\",\"441.7\",\"453.9\",\"488.7\",\"584.0\",\"454.7\",\"430.6\",\"345.4\",\"521.1\",\"483.0\",\"462.7\",\"621.1\",\"447.9\",\"435.2\",\"428.9\",\"546.2\",\"451.0\",\"586.5\",\"321.1\",\"327.7\",\"366.6\",\"540.9\",\"466.6\",\"578.7\",\"448.3\",\"329.5\",\"325.5\",\"510.7\",\"532.8\",\"401.7\",\"483.8\",\"437.2\",\"502.4\",\"514.0\",\"472.1\",\"404.9\",\"475.3\",\"480.7\",\"464.3\",\"375.5\",\"356.8\",\"355.8\",\"463.7\",\"525.1\",\"587.3\",\"468.7\",\"305.6\",\"335.3\",\"451.6\",\"470.0\",\"354.0\",\"398.0\",\"398.7\",\"511.6\",\"485.5\",\"351.9\",\"315.7\",\"316.0\",\"475.1\",\"540.3\",\"421.4\",\"357.5\",\"343.1\",\"520.4\",\"519.7\",\"566.7\",\"556.0\",\"317.2\",\"363.8\",\"377.4\",\"493.7\",\"456.5\",\"468.9\",\"441.6\",\"369.7\",\"443.8\",\"496.4\",\"490.2\",\"545.7\",\"619.8\",\"621.7\",\"446.8\",\"401.7\",\"447.2\",\"433.1\",\"447.6\",\"358.2\",\"315.4\",\"470.4\",\"491.9\",\"347.7\",\"480.1\",\"410.3\",\"453.1\",\"462.6\",\"581.4\",\"340.7\",\"435.2\",\"336.6\",\"467.6\",\"504.9\",\"520.7\",\"320.7\",\"427.8\",\"448.6\",\"469.6\",\"506.4\",\"305.1\",\"380.8\",\"301.9\",\"459.1\",\"481.2\",\"561.0\",\"342.8\",\"464.5\",\"341.0\",\"478.9\",\"467.1\",\"496.7\",\"635.5\",\"484.2\",\"426.2\",\"337.5\",\"450.4\",\"522.8\",\"526.6\",\"608.9\",\"643.6\",\"563.0\",\"468.5\",\"478.4\",\"413.2\",\"327.0\",\"313.3\",\"429.5\",\"371.3\",\"450.7\",\"516.4\",\"598.7\",\"393.4\",\"368.4\",\"449.0\",\"548.6\",\"546.4\",\"592.0\",\"352.5\",\"325.4\",\"302.0\",\"545.3\",\"484.5\",\"458.0\",\"559.1\",\"358.1\",\"383.1\",\"312.6\",\"464.8\",\"480.1\",\"556.2\",\"569.9\",\"571.0\",\"626.8\",\"563.6\",\"451.7\",\"411.3\",\"460.3\",\"372.8\",\"462.4\",\"481.3\",\"498.1\",\"476.8\",\"488.5\",\"354.1\",\"486.0\",\"492.3\",\"464.9\",\"499.8\",\"395.5\",\"345.5\",\"399.3\",\"499.6\",\"467.2\",\"472.4\",\"378.0\",\"381.8\",\"517.7\",\"457.1\",\"542.2\",\"324.0\",\"394.5\",\"492.4\",\"541.6\",\"479.3\",\"380.5\",\"495.6\",\"357.6\",\"453.3\",\"493.0\",\"302.2\",\"330.6\",\"401.6\",\"534.3\",\"492.7\",\"393.7\",\"350.7\",\"375.6\",\"489.7\",\"465.9\",\"563.0\",\"471.8\",\"408.9\",\"406.9\",\"470.5\",\"514.5\",\"532.3\",\"570.3\",\"433.2\",\"388.0\",\"400.7\",\"518.6\",\"547.0\",\"587.2\",\"644.1\",\"370.4\",\"417.9\",\"385.6\",\"543.9\",\"464.2\",\"519.4\",\"467.8\",\"622.2\",\"600.0\",\"622.3\",\"491.3\",\"430.2\",\"468.4\",\"312.7\",\"469.1\",\"493.8\",\"465.7\",\"466.7\",\"626.0\",\"619.3\",\"400.7\",\"354.3\",\"311.0\",\"492.6\",\"529.9\",\"458.0\",\"375.4\",\"327.4\",\"354.0\",\"534.7\",\"541.4\",\"342.3\",\"428.4\",\"428.1\",\"541.1\",\"548.2\",\"526.2\",\"605.6\",\"374.4\",\"431.7\",\"485.8\",\"489.8\",\"459.2\",\"426.0\",\"303.9\",\"404.6\",\"529.0\",\"469.2\",\"589.7\",\"311.8\",\"431.9\",\"324.5\",\"485.1\",\"466.5\",\"556.9\",\"345.0\",\"403.8\",\"471.6\",\"511.0\",\"452.0\",\"453.1\",\"397.0\",\"429.3\",\"486.4\",\"535.7\",\"594.0\",\"375.3\",\"403.4\",\"315.8\",\"542.5\",\"488.8\",\"439.1\",\"412.1\",\"483.1\",\"511.9\",\"520.8\",\"391.7\",\"496.7\",\"348.8\",\"483.2\",\"532.2\",\"406.5\",\"401.8\",\"487.4\",\"525.8\",\"503.6\",\"461.3\",\"642.7\",\"565.8\",\"443.6\",\"428.3\",\"449.3\",\"320.9\",\"329.6\",\"418.0\",\"302.7\",\"435.8\",\"376.0\",\"465.6\",\"454.2\",\"558.3\",\"540.1\",\"621.2\",\"583.0\",\"627.9\",\"497.7\",\"420.6\",\"429.6\",\"300.1\",\"490.8\",\"529.3\",\"502.2\",\"578.4\",\"443.0\",\"397.5\",\"314.0\",\"457.2\",\"484.5\",\"482.8\",\"421.1\",\"426.2\",\"541.3\",\"476.6\",\"522.7\",\"604.0\",\"412.7\",\"476.7\",\"356.4\",\"458.5\",\"527.5\",\"455.2\",\"398.0\",\"392.8\",\"451.9\",\"451.0\",\"389.8\",\"404.9\",\"416.2\",\"539.6\",\"475.3\",\"463.1\",\"337.4\",\"443.3\",\"522.2\",\"473.8\",\"454.4\",\"630.0\",\"425.3\",\"370.8\",\"411.7\",\"499.9\",\"530.5\",\"469.6\",\"606.1\",\"302.2\",\"387.9\",\"356.5\",\"491.3\",\"478.5\",\"486.2\",\"552.7\",\"428.7\",\"478.4\",\"427.3\",\"498.0\",\"483.6\",\"518.3\",\"631.8\",\"497.4\",\"498.7\",\"331.3\",\"543.5\",\"523.6\",\"452.0\",\"435.3\",\"311.3\",\"499.8\",\"492.3\",\"549.6\",\"408.3\",\"312.9\",\"458.2\",\"518.7\",\"511.9\",\"388.5\",\"301.7\",\"434.3\",\"480.9\",\"466.5\",\"454.8\",\"308.7\",\"318.9\",\"318.0\",\"508.3\",\"478.4\",\"599.5\",\"588.7\",\"408.5\",\"449.1\",\"307.1\",\"466.3\",\"486.0\",\"527.4\",\"413.3\",\"461.8\",\"347.9\",\"493.4\",\"467.5\",\"337.6\",\"366.6\",\"479.9\",\"495.7\",\"493.7\",\"308.3\",\"453.7\",\"455.1\",\"522.1\",\"483.9\",\"500.1\",\"626.4\",\"425.1\",\"404.3\",\"331.6\",\"487.0\",\"475.4\",\"561.8\",\"632.9\",\"316.4\",\"490.6\",\"379.4\",\"517.6\",\"451.3\",\"522.5\",\"614.5\",\"636.8\",\"371.2\",\"364.9\",\"430.6\",\"465.1\",\"452.7\",\"509.8\",\"646.8\",\"424.9\",\"463.4\",\"370.7\",\"456.8\",\"540.3\",\"476.7\",\"584.5\",\"464.5\",\"324.2\",\"413.9\",\"523.9\",\"526.4\",\"573.7\",\"611.6\",\"408.9\",\"332.6\",\"308.8\",\"455.5\",\"511.2\",\"485.9\",\"625.8\",\"590.7\",\"427.6\",\"429.0\",\"487.3\",\"340.6\",\"358.6\",\"499.4\",\"531.0\",\"584.9\",\"642.7\",\"639.7\",\"625.1\",\"415.5\",\"452.9\",\"335.9\",\"530.7\",\"531.6\",\"577.5\",\"476.1\",\"563.7\",\"560.3\",\"612.4\",\"412.0\",\"473.1\",\"485.2\",\"457.7\",\"443.5\",\"472.9\",\"476.3\",\"546.9\",\"390.6\",\"386.0\",\"405.3\",\"529.6\",\"482.6\",\"586.7\",\"609.8\",\"368.6\",\"375.6\",\"463.6\",\"498.7\",\"455.6\",\"331.3\",\"447.5\",\"408.4\",\"486.5\",\"453.8\",\"588.2\",\"646.1\",\"471.5\",\"392.8\",\"479.6\",\"518.9\",\"454.4\",\"577.4\",\"441.6\",\"469.7\",\"466.3\",\"496.0\",\"532.1\",\"384.0\",\"482.2\",\"329.3\",\"486.0\",\"494.0\",\"307.4\",\"415.6\",\"444.6\",\"532.7\",\"481.5\",\"474.8\",\"639.8\",\"395.1\",\"476.2\",\"341.8\",\"519.0\",\"471.9\",\"506.3\",\"625.5\",\"611.6\",\"604.6\",\"447.8\",\"429.3\",\"374.9\",\"462.1\",\"475.0\",\"502.4\",\"462.0\",\"560.3\",\"413.4\",\"407.6\",\"323.0\",\"487.7\",\"464.1\",\"472.8\",\"579.5\",\"449.9\",\"302.4\",\"499.4\",\"492.6\",\"507.4\",\"596.6\",\"574.9\",\"392.6\",\"499.8\",\"423.9\",\"465.6\",\"482.9\",\"494.1\",\"575.9\",\"590.4\",\"372.6\",\"394.3\",\"393.6\",\"478.1\",\"505.6\",\"439.9\",\"456.7\",\"337.7\",\"474.7\",\"462.5\",\"559.1\",\"370.3\",\"407.4\",\"442.0\",\"495.2\",\"463.7\",\"591.8\",\"551.1\",\"492.7\",\"325.0\",\"404.9\",\"450.6\",\"463.7\",\"396.0\",\"462.7\",\"364.0\",\"465.0\",\"485.5\",\"424.2\",\"471.7\",\"361.6\",\"516.5\",\"514.9\",\"563.5\",\"445.6\",\"348.3\",\"466.5\",\"519.5\",\"498.5\",\"529.0\",\"469.3\",\"340.0\",\"415.2\",\"468.1\",\"460.5\",\"498.4\",\"422.5\",\"385.1\",\"484.7\",\"542.0\",\"431.3\",\"323.5\",\"474.8\",\"497.3\",\"450.7\",\"532.1\",\"577.0\",\"568.6\",\"419.8\",\"434.8\",\"439.2\",\"321.2\",\"491.0\",\"408.7\",\"485.4\",\"490.5\",\"529.6\",\"505.1\",\"603.8\",\"398.5\",\"300.4\",\"474.6\",\"464.9\",\"536.8\",\"585.9\",\"479.2\",\"379.8\",\"408.0\",\"534.3\",\"515.9\",\"580.6\",\"584.5\",\"385.6\",\"451.5\",\"323.3\",\"547.5\",\"517.6\",\"477.5\",\"491.6\",\"426.5\",\"477.9\",\"525.8\",\"548.7\",\"457.9\",\"496.3\",\"392.4\",\"547.7\",\"463.2\",\"578.5\",\"460.5\",\"309.0\",\"365.9\",\"451.8\",\"508.9\",\"361.2\",\"425.7\",\"336.5\",\"539.3\",\"487.8\",\"485.5\",\"343.8\",\"383.3\",\"499.7\",\"500.4\",\"521.7\",\"490.6\",\"387.5\",\"446.7\",\"540.6\",\"499.5\",\"463.3\",\"397.4\",\"405.0\",\"528.1\",\"502.6\",\"536.3\",\"625.0\",\"400.8\",\"380.2\",\"419.7\",\"498.2\",\"465.1\",\"596.4\",\"582.4\",\"464.6\",\"474.1\",\"478.1\",\"493.1\",\"514.8\",\"465.9\",\"420.3\",\"366.6\",\"518.7\",\"526.1\",\"409.1\",\"496.7\",\"420.9\",\"476.7\",\"527.9\",\"480.6\",\"300.2\",\"356.9\",\"526.7\",\"475.9\",\"409.4\",\"423.5\",\"328.4\",\"514.3\",\"529.8\",\"540.9\",\"308.5\",\"318.2\",\"442.9\",\"498.9\",\"545.2\",\"515.7\",\"634.1\",\"356.7\",\"331.2\",\"345.2\",\"523.8\",\"471.8\",\"535.5\",\"582.5\",\"486.9\",\"453.4\",\"326.7\",\"525.3\",\"484.0\",\"454.0\",\"470.7\",\"321.5\",\"496.4\",\"489.3\",\"455.1\",\"367.8\",\"470.1\",\"488.4\",\"496.9\",\"319.3\",\"460.5\",\"311.2\",\"521.3\",\"543.2\",\"348.5\",\"495.0\",\"440.8\",\"540.8\",\"527.2\",\"464.3\",\"594.2\",\"424.1\",\"391.8\",\"367.0\",\"471.4\",\"470.0\",\"359.8\",\"472.3\",\"381.2\",\"468.8\",\"516.9\",\"474.8\",\"588.2\",\"360.0\",\"475.4\",\"371.3\",\"510.4\",\"535.9\",\"354.0\",\"447.8\",\"302.8\",\"516.3\",\"462.2\",\"596.1\",\"623.1\",\"331.3\",\"355.5\",\"395.4\",\"543.9\",\"535.6\",\"470.8\",\"646.0\",\"562.2\",\"497.9\",\"469.3\",\"429.1\",\"401.1\",\"382.1\",\"323.6\",\"453.2\",\"418.0\",\"325.3\",\"444.6\",\"540.8\",\"474.3\",\"517.6\",\"321.9\",\"446.9\",\"428.6\",\"454.1\",\"474.2\",\"433.9\",\"393.6\",\"409.0\",\"548.7\",\"464.8\",\"518.3\",\"601.1\",\"363.9\",\"421.3\",\"461.1\",\"462.6\",\"461.7\",\"515.6\",\"575.9\",\"384.6\",\"376.0\",\"409.5\",\"510.4\",\"520.3\",\"450.3\",\"441.3\",\"412.3\",\"452.9\",\"488.3\",\"548.3\",\"522.9\",\"595.9\",\"645.1\",\"621.0\",\"410.0\",\"338.2\",\"322.2\",\"369.1\",\"506.6\",\"478.7\",\"470.7\",\"565.6\",\"371.7\",\"331.0\",\"355.4\",\"511.9\",\"482.0\",\"476.5\",\"445.0\",\"402.9\",\"306.8\",\"504.8\",\"472.1\",\"478.0\",\"616.9\",\"340.8\",\"396.3\",\"477.6\",\"523.3\",\"474.2\",\"597.0\",\"383.3\",\"327.1\",\"365.5\",\"465.4\",\"462.0\",\"327.6\",\"431.6\",\"381.5\",\"533.0\",\"465.3\",\"450.5\",\"562.2\",\"402.2\",\"319.9\",\"306.4\",\"459.9\",\"497.8\",\"486.8\",\"622.4\",\"577.0\",\"488.9\",\"475.8\",\"444.6\",\"358.2\",\"388.9\",\"311.0\",\"413.4\",\"469.7\",\"492.9\",\"476.3\",\"609.4\",\"352.7\",\"375.4\",\"364.1\",\"514.3\",\"530.0\",\"468.8\",\"381.5\",\"433.2\",\"471.6\",\"474.9\",\"586.8\",\"429.9\",\"431.8\",\"383.9\",\"487.1\",\"451.4\",\"485.2\",\"448.2\",\"316.2\",\"544.1\",\"469.8\",\"482.6\",\"644.0\",\"332.8\",\"336.7\",\"328.3\",\"522.0\",\"511.9\",\"588.4\",\"443.1\",\"304.9\",\"359.9\",\"478.0\",\"525.4\",\"523.3\",\"475.9\",\"426.1\",\"424.1\",\"534.4\",\"480.9\",\"464.1\",\"640.0\",\"343.5\",\"426.4\",\"461.3\",\"490.1\",\"497.3\",\"480.1\",\"320.0\",\"364.7\",\"335.5\",\"532.9\",\"536.5\",\"378.1\",\"407.6\",\"313.9\",\"549.4\",\"451.1\",\"585.2\",\"346.3\",\"420.4\",\"479.2\",\"531.5\",\"485.6\",\"376.7\",\"472.9\",\"375.6\",\"502.9\",\"502.6\",\"459.9\",\"332.4\",\"431.3\",\"454.9\",\"497.6\",\"479.8\",\"352.4\",\"423.0\",\"370.2\",\"521.6\",\"515.5\",\"537.7\",\"409.6\",\"324.6\",\"393.7\",\"495.6\",\"516.6\",\"577.7\",\"593.3\",\"303.9\",\"372.0\",\"462.5\",\"452.6\",\"484.5\",\"524.0\",\"342.8\",\"466.0\",\"410.1\",\"528.0\",\"486.4\",\"456.9\",\"410.7\",\"321.5\",\"395.0\",\"505.2\",\"471.7\",\"450.8\",\"473.2\",\"330.4\",\"316.2\",\"528.7\",\"538.2\",\"584.9\",\"369.2\",\"318.7\",\"417.7\",\"492.0\",\"471.2\",\"384.6\",\"300.2\",\"495.1\",\"546.3\",\"516.5\",\"355.5\",\"464.2\",\"472.3\",\"461.5\",\"534.7\",\"573.9\",\"566.6\",\"456.9\",\"450.2\",\"423.5\",\"472.3\",\"495.6\",\"525.3\",\"559.8\",\"388.0\",\"423.0\",\"489.6\",\"481.8\",\"534.9\",\"558.3\",\"543.4\",\"618.2\",\"633.0\",\"630.9\",\"433.0\",\"463.9\",\"315.8\",\"358.0\",\"417.9\",\"515.5\",\"525.1\",\"322.2\",\"324.0\",\"389.2\",\"469.5\",\"529.5\",\"518.3\",\"327.1\",\"320.3\",\"495.7\",\"522.9\",\"470.4\",\"478.3\",\"324.5\",\"432.0\",\"457.7\",\"549.5\",\"504.9\",\"543.1\",\"305.0\",\"457.8\",\"401.2\",\"531.7\",\"496.3\",\"507.6\",\"619.9\",\"409.9\",\"423.6\",\"366.4\",\"506.7\",\"527.5\",\"431.5\",\"305.0\",\"429.0\",\"535.2\",\"450.9\",\"463.9\",\"352.8\",\"429.4\",\"306.9\",\"512.5\",\"476.6\",\"462.7\",\"614.8\",\"455.5\",\"494.8\",\"381.3\",\"531.4\",\"483.3\",\"492.7\",\"482.8\",\"483.3\",\"466.2\",\"457.7\",\"452.5\",\"392.9\",\"398.9\",\"428.8\",\"463.1\",\"541.8\",\"432.6\",\"435.3\",\"379.3\",\"514.8\",\"535.5\",\"527.4\",\"636.9\",\"489.9\",\"413.6\",\"465.1\",\"507.0\",\"499.1\",\"487.9\",\"428.8\",\"489.9\",\"509.9\",\"536.0\",\"346.8\",\"460.2\",\"407.1\",\"516.5\",\"514.7\",\"392.4\",\"402.5\",\"469.8\",\"498.8\",\"546.9\",\"529.7\",\"603.9\",\"362.6\",\"414.7\",\"443.0\",\"469.0\",\"497.6\",\"488.1\",\"407.3\",\"367.7\",\"393.4\",\"516.6\",\"535.4\",\"459.3\",\"388.6\",\"454.8\",\"467.6\",\"495.9\",\"528.3\",\"586.5\",\"387.9\",\"420.6\",\"428.3\",\"546.6\",\"526.4\",\"455.6\",\"552.3\",\"320.8\",\"398.2\",\"357.6\",\"515.5\",\"480.0\",\"473.6\",\"551.7\",\"347.2\",\"371.7\",\"314.6\",\"534.4\",\"518.6\",\"331.1\",\"313.8\",\"469.4\",\"457.4\",\"506.4\",\"459.0\",\"324.2\",\"350.0\",\"481.5\",\"468.5\",\"455.7\",\"472.8\",\"433.3\",\"319.1\",\"512.5\",\"470.0\",\"487.0\",\"426.9\",\"484.6\",\"531.3\",\"540.1\",\"487.6\",\"519.1\",\"435.9\",\"402.7\",\"442.0\",\"522.4\",\"515.0\",\"453.0\",\"603.4\",\"324.4\",\"448.8\",\"442.9\",\"474.6\",\"530.3\",\"501.1\",\"597.7\",\"441.6\",\"300.4\",\"440.5\",\"518.6\",\"469.3\",\"450.4\",\"570.2\",\"447.5\",\"339.7\",\"410.5\",\"514.1\",\"531.0\",\"497.3\",\"302.9\",\"385.4\",\"494.6\",\"451.4\",\"529.1\",\"506.2\",\"611.5\",\"554.1\",\"474.7\",\"419.4\",\"410.0\",\"480.5\",\"361.8\",\"366.1\",\"481.3\",\"486.6\",\"389.8\",\"437.7\",\"384.1\",\"503.3\",\"543.8\",\"489.9\",\"635.6\",\"495.0\",\"351.1\",\"490.2\",\"467.8\",\"468.3\",\"394.9\",\"400.5\",\"381.8\",\"534.7\",\"536.4\",\"533.7\",\"596.4\",\"332.7\",\"399.7\",\"400.8\",\"501.2\",\"527.9\",\"552.2\",\"606.5\",\"345.9\",\"491.8\",\"473.7\",\"544.4\",\"483.5\",\"532.1\",\"616.5\",\"414.2\",\"334.5\",\"347.7\",\"487.8\",\"456.8\",\"453.2\",\"566.2\",\"465.8\",\"459.0\",\"478.4\",\"504.3\",\"526.3\",\"515.5\",\"492.3\",\"388.0\",\"313.0\",\"484.1\",\"510.8\",\"498.4\",\"640.9\",\"327.7\",\"374.3\",\"444.5\",\"502.9\",\"528.5\",\"501.0\",\"647.1\",\"482.5\",\"430.6\",\"310.0\",\"526.3\",\"546.0\",\"553.9\",\"599.9\",\"463.3\",\"466.6\",\"306.0\",\"479.3\",\"541.5\",\"315.9\",\"332.1\",\"392.5\",\"537.2\",\"505.6\",\"589.0\",\"355.5\",\"430.1\",\"451.5\",\"454.9\",\"462.7\",\"305.1\",\"321.2\",\"312.2\",\"477.4\",\"533.3\",\"431.6\",\"369.8\",\"431.3\",\"532.5\",\"475.9\",\"443.3\",\"426.6\",\"302.8\",\"529.8\",\"508.8\",\"573.1\",\"459.8\",\"642.6\",\"568.0\",\"585.2\",\"451.2\",\"300.2\",\"483.3\",\"401.1\",\"468.8\",\"518.3\",\"586.0\",\"457.2\",\"322.6\",\"378.4\",\"530.1\",\"519.3\",\"579.7\",\"616.5\",\"572.9\",\"461.4\",\"435.9\",\"475.2\",\"393.8\",\"371.4\",\"363.6\",\"487.7\",\"395.3\",\"301.4\",\"463.8\",\"489.4\",\"535.5\",\"491.5\",\"440.9\",\"374.3\",\"473.6\",\"454.0\",\"512.4\",\"409.9\",\"454.6\",\"421.3\",\"457.1\",\"536.2\",\"443.5\",\"358.3\",\"459.3\",\"508.6\",\"511.5\",\"469.4\",\"343.5\",\"455.7\",\"497.0\",\"485.2\",\"489.3\",\"549.4\",\"606.6\",\"472.1\",\"302.8\",\"421.1\",\"518.6\",\"521.7\",\"569.4\",\"400.9\",\"368.5\",\"357.9\",\"542.4\",\"498.5\",\"558.7\",\"470.0\",\"474.7\",\"466.2\",\"534.2\",\"451.3\",\"562.8\",\"396.6\",\"331.8\",\"493.7\",\"465.8\",\"469.6\",\"322.6\",\"415.6\",\"497.6\",\"453.2\",\"464.5\",\"380.0\",\"435.8\",\"320.1\",\"529.4\",\"491.6\",\"591.0\",\"552.7\",\"444.9\",\"373.6\",\"320.4\",\"455.8\",\"544.5\",\"521.2\",\"392.5\",\"485.0\",\"403.6\",\"465.3\",\"488.3\",\"505.1\",\"646.9\",\"495.8\",\"471.6\",\"409.6\",\"542.3\",\"503.0\",\"561.2\",\"493.4\",\"419.8\",\"445.3\",\"533.3\",\"478.4\",\"536.1\",\"555.8\",\"449.1\",\"397.8\",\"488.0\",\"492.0\",\"487.4\",\"486.1\",\"420.0\",\"495.9\",\"413.7\",\"538.3\",\"461.4\",\"549.1\",\"558.5\",\"321.5\",\"452.5\",\"308.1\",\"460.2\",\"536.5\",\"561.8\",\"605.3\",\"453.2\",\"336.0\",\"315.8\",\"514.6\",\"486.9\",\"554.2\",\"561.3\",\"440.1\",\"417.3\",\"431.9\",\"505.3\",\"502.3\",\"492.0\",\"588.3\",\"389.6\",\"376.5\",\"463.1\",\"530.9\",\"486.6\",\"498.3\",\"436.7\",\"420.7\",\"314.8\",\"538.8\",\"533.1\",\"480.5\",\"425.0\",\"496.1\",\"393.0\",\"538.7\",\"484.5\",\"568.1\",\"480.6\",\"626.7\",\"570.8\",\"563.4\",\"402.7\",\"481.6\",\"433.1\",\"422.5\",\"439.2\",\"512.1\",\"520.3\",\"465.1\",\"623.0\",\"456.5\",\"452.0\",\"463.4\",\"524.2\",\"534.2\",\"586.5\",\"387.3\",\"310.5\",\"393.4\",\"502.5\",\"535.9\",\"467.5\",\"494.2\",\"335.3\",\"395.0\",\"454.2\",\"526.8\",\"543.9\",\"554.1\",\"462.9\",\"336.8\",\"300.1\",\"484.6\",\"496.1\",\"465.2\",\"345.2\",\"450.0\",\"402.0\",\"538.2\",\"547.3\",\"582.8\",\"641.4\",\"401.0\",\"362.8\",\"349.9\",\"466.9\",\"493.5\",\"496.0\",\"572.7\",\"467.8\",\"341.7\",\"492.4\",\"505.2\",\"520.2\",\"582.0\",\"624.3\",\"350.4\",\"476.8\",\"410.8\",\"477.4\",\"546.8\",\"561.4\",\"648.0\",\"310.7\",\"379.4\",\"334.6\",\"541.6\",\"479.6\",\"495.4\",\"311.9\",\"341.5\",\"482.2\",\"521.0\",\"490.8\",\"578.8\",\"548.2\",\"593.9\",\"336.6\",\"362.7\",\"468.3\",\"532.9\",\"535.4\",\"543.2\",\"576.9\",\"362.9\",\"397.3\",\"351.8\",\"529.4\",\"458.3\",\"470.2\",\"428.4\",\"334.0\",\"475.3\",\"508.0\",\"489.0\",\"487.7\",\"453.2\",\"307.1\",\"523.2\",\"533.6\",\"468.6\",\"574.4\",\"352.5\",\"354.0\",\"437.6\",\"514.4\",\"514.0\",\"475.5\",\"455.9\",\"376.3\",\"345.8\",\"525.8\",\"469.6\",\"584.6\",\"394.5\",\"399.7\",\"421.8\",\"469.9\",\"508.6\",\"476.4\",\"555.1\",\"418.0\",\"396.3\",\"353.8\",\"480.7\",\"528.9\",\"346.1\",\"478.1\",\"433.0\",\"544.6\",\"474.6\",\"597.4\",\"615.4\",\"416.7\",\"303.7\",\"490.2\",\"489.1\",\"535.8\",\"479.7\",\"561.3\",\"405.0\",\"411.9\",\"426.1\",\"477.4\",\"500.4\",\"506.4\",\"500.3\",\"553.5\",\"635.3\",\"458.9\",\"450.3\",\"440.5\",\"489.5\",\"548.9\",\"472.8\",\"341.5\",\"440.2\",\"436.4\",\"547.2\",\"465.9\",\"545.0\",\"569.7\",\"490.3\",\"434.5\",\"336.4\",\"499.5\",\"489.9\",\"336.0\",\"438.6\",\"484.0\",\"464.1\",\"492.7\",\"481.6\",\"339.1\",\"366.6\",\"494.0\",\"501.3\",\"498.2\",\"511.4\",\"431.4\",\"323.2\",\"333.1\",\"458.1\",\"457.7\",\"593.3\",\"562.7\",\"351.1\",\"355.8\",\"373.1\",\"528.8\",\"488.8\",\"505.4\",\"575.9\",\"604.0\",\"404.6\",\"400.8\",\"403.2\",\"438.8\",\"459.6\",\"489.4\",\"513.5\",\"487.4\",\"462.8\",\"600.5\",\"375.5\",\"323.9\",\"304.9\",\"512.6\",\"475.0\",\"414.6\",\"418.2\",\"423.9\",\"528.5\",\"471.4\",\"518.7\",\"641.6\",\"579.8\",\"490.9\",\"400.6\",\"402.4\",\"402.9\",\"401.1\",\"335.7\",\"348.4\",\"467.3\",\"463.1\",\"510.4\",\"462.4\",\"422.7\",\"340.4\",\"313.2\",\"492.5\",\"533.2\",\"537.9\",\"462.0\",\"602.3\",\"630.8\",\"564.6\",\"487.5\",\"416.9\",\"411.4\",\"487.8\",\"303.8\",\"511.3\",\"518.4\",\"531.5\",\"580.5\",\"383.1\",\"302.0\",\"449.3\",\"481.0\",\"496.4\",\"441.3\",\"491.1\",\"309.5\",\"452.1\",\"483.9\",\"584.0\",\"573.0\",\"397.4\",\"451.9\",\"480.5\",\"535.4\",\"487.1\",\"469.3\",\"575.3\",\"357.9\",\"401.2\",\"444.9\",\"530.9\",\"516.3\",\"534.6\",\"556.1\",\"431.2\",\"347.7\",\"343.7\",\"534.7\",\"464.1\",\"382.3\",\"425.3\",\"326.9\",\"471.0\",\"532.4\",\"507.8\",\"456.6\",\"494.9\",\"394.8\",\"523.7\",\"540.4\",\"532.8\",\"554.1\",\"376.3\",\"452.5\",\"363.6\",\"532.3\",\"523.8\",\"479.4\",\"643.4\",\"483.7\",\"343.0\",\"467.8\",\"454.4\",\"523.5\",\"539.6\",\"634.2\",\"329.4\",\"349.8\",\"420.2\",\"503.4\",\"533.6\",\"331.9\",\"472.7\",\"444.1\",\"483.3\",\"541.4\",\"442.0\",\"410.6\",\"334.3\",\"462.5\",\"548.6\",\"459.1\",\"647.3\",\"383.5\",\"371.0\",\"387.5\",\"495.5\",\"531.7\",\"522.2\",\"423.8\",\"462.5\",\"301.1\",\"530.4\",\"517.4\",\"541.3\",\"613.5\",\"329.0\",\"411.2\",\"340.3\",\"465.4\",\"457.8\",\"347.6\",\"498.4\",\"437.6\",\"481.4\",\"504.4\",\"525.5\",\"555.7\",\"374.0\",\"481.9\",\"442.6\",\"468.1\",\"521.7\",\"473.8\",\"441.6\",\"365.3\",\"496.9\",\"470.3\",\"549.2\",\"624.0\",\"451.7\",\"325.5\",\"353.8\",\"533.7\",\"474.5\",\"362.9\",\"349.4\",\"321.9\",\"486.5\",\"520.6\",\"453.1\",\"350.7\",\"366.9\",\"304.2\",\"533.6\",\"459.4\",\"413.6\",\"340.8\",\"402.8\",\"472.6\",\"547.3\",\"472.7\",\"456.3\",\"402.3\",\"467.9\",\"513.3\",\"518.0\",\"448.5\",\"361.5\",\"367.4\",\"483.9\",\"495.9\",\"532.1\",\"483.1\",\"373.2\",\"393.6\",\"462.1\",\"452.8\",\"561.4\",\"577.1\",\"630.3\",\"601.1\",\"457.2\",\"443.8\",\"412.6\",\"429.6\",\"377.3\",\"464.0\",\"456.4\",\"484.4\",\"585.8\",\"494.9\",\"573.5\",\"632.2\",\"589.5\",\"345.9\",\"490.4\",\"449.0\",\"505.7\",\"506.5\",\"447.1\",\"355.5\",\"344.1\",\"471.3\",\"538.7\",\"475.2\",\"627.6\",\"494.6\",\"310.8\",\"419.8\",\"548.3\",\"532.5\",\"472.5\",\"482.3\",\"455.1\",\"526.8\",\"452.7\",\"377.9\",\"333.1\",\"382.4\",\"516.5\",\"541.3\",\"529.9\",\"496.7\",\"455.2\",\"344.0\",\"525.5\",\"513.1\",\"564.5\",\"590.1\",\"300.9\",\"401.1\",\"325.1\",\"489.3\",\"487.6\",\"489.2\",\"466.5\",\"331.9\",\"451.6\",\"538.9\",\"528.5\",\"566.4\",\"385.2\",\"490.4\",\"410.5\",\"534.6\",\"508.4\",\"556.1\",\"582.4\",\"462.1\",\"367.5\",\"373.2\",\"467.3\",\"520.2\",\"450.7\",\"366.0\",\"319.0\",\"326.1\",\"529.8\",\"454.0\",\"497.3\",\"373.0\",\"399.9\",\"421.5\",\"542.6\",\"505.5\",\"559.0\",\"646.5\",\"451.9\",\"312.1\",\"327.0\",\"456.4\",\"465.8\",\"462.6\",\"395.7\",\"446.0\",\"392.7\",\"544.6\",\"526.1\",\"380.6\",\"359.7\",\"340.5\",\"488.0\",\"541.5\",\"369.6\",\"400.8\",\"396.9\",\"519.8\",\"485.9\",\"300.4\",\"399.9\",\"335.7\",\"513.7\",\"451.9\",\"412.9\",\"410.4\",\"359.4\",\"548.9\",\"462.7\",\"315.1\",\"319.3\",\"384.6\",\"504.4\",\"458.6\",\"440.4\",\"352.2\",\"458.9\",\"506.6\",\"509.0\",\"369.7\",\"409.9\",\"432.1\",\"470.4\",\"505.0\",\"497.5\",\"368.6\",\"430.8\",\"451.7\",\"496.7\",\"501.2\",\"384.7\",\"347.1\",\"387.7\",\"495.3\",\"542.8\",\"503.6\",\"387.8\",\"327.4\",\"450.2\",\"457.3\",\"530.9\",\"485.8\",\"453.4\",\"469.8\",\"411.3\",\"493.9\",\"498.9\",\"586.4\",\"604.6\",\"482.5\",\"394.8\",\"445.8\",\"469.7\",\"474.4\",\"493.6\",\"380.7\",\"320.7\",\"521.5\",\"467.3\",\"561.4\",\"461.0\",\"394.7\",\"329.4\",\"460.8\",\"521.9\",\"422.2\",\"366.9\",\"358.0\",\"481.6\",\"530.0\",\"567.5\",\"523.0\",\"640.6\",\"596.4\",\"552.1\",\"494.3\",\"470.3\",\"366.7\",\"401.8\",\"353.7\",\"452.5\",\"538.0\",\"492.2\",\"630.6\",\"348.6\",\"378.4\",\"480.6\",\"459.9\",\"458.6\",\"450.5\",\"360.1\",\"405.8\",\"487.3\",\"486.0\",\"586.6\",\"340.9\",\"369.1\",\"321.8\",\"506.0\",\"464.2\",\"532.7\",\"623.8\",\"324.9\",\"427.4\",\"363.8\",\"463.2\",\"501.9\",\"328.0\",\"364.7\",\"449.6\",\"547.3\",\"452.1\",\"521.3\",\"649.4\",\"333.2\",\"303.1\",\"463.5\",\"521.3\",\"519.3\",\"558.7\",\"408.3\",\"467.9\",\"349.6\",\"459.6\",\"479.8\",\"457.2\",\"640.0\",\"346.5\",\"412.5\",\"324.9\",\"460.4\",\"475.2\",\"423.1\",\"450.0\",\"494.7\",\"450.9\",\"540.3\",\"517.8\",\"324.7\",\"349.4\",\"420.0\",\"468.0\",\"480.7\",\"559.3\",\"580.2\",\"397.1\",\"428.7\",\"366.3\",\"529.4\",\"496.4\",\"375.2\",\"369.8\",\"462.8\",\"509.7\",\"549.2\",\"331.7\",\"446.9\",\"437.5\",\"468.4\",\"494.0\",\"384.1\",\"361.2\",\"396.9\",\"453.3\",\"457.5\",\"506.0\",\"638.8\",\"356.5\",\"344.0\",\"461.7\",\"497.7\",\"486.4\",\"414.6\",\"407.4\",\"335.8\",\"510.7\",\"487.1\",\"450.6\",\"586.2\",\"604.2\",\"350.3\",\"440.0\",\"399.2\",\"540.1\",\"489.0\",\"378.3\",\"380.8\",\"481.0\",\"531.7\",\"515.9\",\"481.2\",\"575.7\",\"385.8\",\"321.1\",\"319.0\",\"542.7\",\"542.6\",\"477.2\",\"631.1\",\"325.9\",\"492.5\",\"485.3\",\"510.5\",\"522.2\",\"555.6\",\"356.3\",\"408.0\",\"394.0\",\"501.0\",\"470.4\",\"521.0\",\"476.8\",\"324.9\",\"483.0\",\"534.9\",\"454.1\",\"488.6\",\"400.5\",\"448.4\",\"528.1\",\"492.9\",\"567.7\",\"564.4\",\"336.5\",\"412.0\",\"318.2\",\"464.4\",\"470.4\",\"328.4\",\"429.9\",\"477.9\",\"507.0\",\"461.8\",\"580.8\",\"475.2\",\"439.9\",\"479.3\",\"548.8\",\"508.1\",\"554.5\",\"458.3\",\"601.8\",\"602.8\",\"482.9\",\"312.0\",\"438.2\",\"531.6\",\"515.2\",\"488.1\",\"485.2\",\"365.6\",\"457.2\",\"549.9\",\"504.1\",\"399.1\",\"344.0\",\"452.5\",\"456.1\",\"513.3\",\"485.7\",\"637.3\",\"430.8\",\"321.9\",\"319.1\",\"479.4\",\"482.2\",\"506.7\",\"364.4\",\"359.1\",\"455.1\",\"508.2\",\"517.3\",\"590.9\",\"399.6\",\"394.0\",\"355.4\",\"464.0\",\"492.0\",\"334.4\",\"321.2\",\"446.3\",\"508.3\",\"524.2\",\"494.3\",\"475.2\",\"601.2\",\"646.2\",\"560.7\",\"406.1\",\"492.9\",\"319.1\",\"425.9\",\"450.6\",\"470.9\",\"500.9\",\"572.3\",\"367.5\",\"453.4\",\"322.1\",\"465.5\",\"465.0\",\"501.2\",\"369.9\",\"455.8\",\"419.3\",\"470.0\",\"534.0\",\"502.8\",\"571.3\",\"409.2\",\"484.8\",\"394.7\",\"520.9\",\"481.9\",\"462.6\",\"635.7\",\"476.9\",\"490.5\",\"489.3\",\"479.5\",\"498.0\",\"560.1\",\"578.3\",\"316.4\",\"429.0\",\"459.3\",\"535.0\",\"523.7\",\"509.6\",\"617.2\",\"648.7\",\"553.4\",\"353.3\",\"453.6\",\"313.8\",\"476.5\",\"473.2\",\"541.9\",\"639.2\",\"491.5\",\"349.6\",\"472.5\",\"463.5\",\"529.6\",\"508.5\",\"565.8\",\"351.0\",\"314.6\",\"460.2\",\"538.6\",\"509.7\",\"481.7\",\"647.5\",\"441.5\",\"461.9\",\"479.9\",\"521.2\",\"543.7\",\"357.7\",\"310.2\",\"331.6\",\"464.1\",\"478.7\",\"365.3\",\"452.6\",\"422.5\",\"530.1\",\"502.4\",\"468.3\",\"592.6\",\"359.7\",\"482.1\",\"378.4\",\"519.0\",\"503.5\",\"480.0\",\"301.4\",\"353.8\",\"432.3\",\"546.4\",\"480.3\",\"558.0\",\"413.4\",\"316.3\",\"423.2\",\"457.3\",\"510.7\",\"482.0\",\"599.6\",\"454.7\",\"450.9\",\"420.6\",\"495.9\",\"462.8\",\"420.0\",\"356.2\",\"432.1\",\"525.6\",\"538.4\",\"520.2\",\"467.5\",\"359.9\",\"369.3\",\"504.2\",\"520.9\",\"465.4\",\"342.0\",\"383.7\",\"460.2\",\"463.8\",\"457.1\",\"352.5\",\"484.3\",\"479.0\",\"459.4\",\"490.1\",\"497.3\",\"470.0\",\"375.7\",\"372.5\",\"500.4\",\"503.8\",\"325.5\",\"336.4\",\"411.8\",\"475.2\",\"495.7\",\"449.7\",\"481.1\",\"446.3\",\"507.5\",\"504.5\",\"482.7\",\"569.1\",\"478.1\",\"497.5\",\"397.4\",\"514.7\",\"534.2\",\"507.5\",\"326.7\",\"499.9\",\"426.2\",\"530.2\",\"541.9\",\"439.6\",\"320.3\",\"376.7\",\"491.8\",\"512.7\",\"472.8\",\"449.6\",\"463.8\",\"512.8\",\"526.9\",\"490.1\",\"473.1\",\"385.6\",\"350.5\",\"487.3\",\"475.0\",\"581.3\",\"462.1\",\"396.5\",\"476.5\",\"477.1\",\"504.1\",\"453.7\",\"630.8\",\"312.9\",\"451.5\",\"498.5\",\"501.0\",\"469.4\",\"520.3\",\"588.4\",\"586.4\",\"449.6\",\"449.8\",\"447.3\",\"308.4\",\"321.0\",\"510.5\",\"468.5\",\"319.5\",\"341.2\",\"465.5\",\"520.6\",\"526.1\",\"444.1\",\"310.3\",\"484.6\",\"540.7\",\"503.2\",\"458.7\",\"332.4\",\"373.7\",\"528.4\",\"508.5\",\"352.8\",\"444.4\",\"409.3\",\"474.1\",\"506.2\",\"535.2\",\"384.6\",\"304.5\",\"405.6\",\"471.0\",\"489.9\",\"558.1\",\"322.6\",\"417.6\",\"369.2\",\"454.0\",\"468.3\",\"553.9\",\"385.3\",\"356.2\",\"377.7\",\"533.2\",\"525.8\",\"502.8\",\"638.7\",\"495.9\",\"398.6\",\"388.9\",\"462.4\",\"492.4\",\"512.4\",\"470.8\",\"403.1\",\"421.9\",\"513.4\",\"526.2\",\"505.2\",\"343.8\",\"419.3\",\"492.8\",\"475.3\",\"529.5\",\"493.2\",\"457.3\",\"404.7\",\"466.2\",\"478.1\",\"576.0\",\"553.0\",\"376.6\",\"487.5\",\"432.6\",\"545.0\",\"539.1\",\"486.2\",\"324.9\",\"338.6\",\"453.5\",\"519.8\",\"455.4\",\"527.5\",\"568.5\",\"633.2\",\"627.6\",\"407.7\",\"430.5\",\"432.9\",\"331.2\",\"396.6\",\"387.0\",\"515.6\",\"465.3\",\"587.6\",\"345.1\",\"499.2\",\"460.4\",\"529.6\",\"469.6\",\"522.6\",\"613.9\",\"601.3\",\"312.6\",\"309.8\",\"444.3\",\"475.1\",\"471.0\",\"332.0\",\"455.9\",\"466.9\",\"491.2\",\"548.7\",\"474.4\",\"642.0\",\"417.1\",\"495.8\",\"330.4\",\"495.9\",\"473.9\",\"466.1\",\"612.1\",\"390.9\",\"455.9\",\"373.5\",\"471.5\",\"510.0\",\"488.8\",\"598.1\",\"465.2\",\"347.2\",\"422.7\",\"474.2\",\"505.7\",\"564.4\",\"610.4\",\"442.1\",\"402.7\",\"436.2\",\"452.1\",\"462.3\",\"515.8\",\"486.8\",\"495.3\",\"390.8\",\"478.2\",\"543.2\",\"526.7\",\"360.5\",\"483.7\",\"489.8\",\"470.5\",\"543.6\",\"531.6\",\"617.6\",\"309.9\",\"389.5\",\"312.8\",\"528.6\",\"527.2\",\"523.7\",\"381.6\",\"483.0\",\"350.6\",\"511.1\",\"488.8\",\"376.1\",\"460.8\",\"336.5\",\"511.1\",\"471.1\",\"436.4\",\"482.5\",\"414.3\",\"542.6\",\"519.5\",\"462.2\",\"470.0\",\"433.6\",\"438.6\",\"483.5\",\"486.9\",\"406.5\",\"301.7\",\"458.8\",\"492.9\",\"542.6\",\"420.4\",\"335.7\",\"485.4\",\"457.0\",\"510.6\",\"465.5\",\"601.5\",\"481.3\",\"441.4\",\"454.9\",\"476.7\",\"472.9\",\"562.8\",\"410.2\",\"382.4\",\"353.5\",\"503.9\",\"543.3\",\"557.7\",\"561.1\",\"625.8\",\"404.4\",\"447.1\",\"347.1\",\"383.9\",\"475.5\",\"530.4\",\"460.9\",\"331.1\",\"357.1\",\"464.7\",\"462.3\",\"547.4\",\"578.5\",\"362.4\",\"361.3\",\"399.0\",\"500.8\",\"456.7\",\"514.2\",\"614.8\",\"357.4\",\"342.1\",\"357.6\",\"530.5\",\"544.1\",\"563.8\",\"429.8\",\"488.5\",\"409.7\",\"533.5\",\"479.5\",\"475.4\",\"593.1\",\"420.8\",\"391.7\",\"451.2\",\"491.7\",\"515.4\",\"596.9\",\"477.0\",\"469.6\",\"353.2\",\"477.5\",\"524.4\",\"479.8\",\"582.3\",\"337.4\",\"362.9\",\"361.9\",\"539.4\",\"516.0\",\"490.4\",\"491.6\",\"488.2\",\"460.1\",\"504.1\",\"511.5\",\"456.6\",\"350.4\",\"341.7\",\"477.8\",\"476.9\",\"452.9\",\"638.7\",\"434.3\",\"387.5\",\"397.1\",\"457.8\",\"463.9\",\"502.1\",\"639.0\",\"443.1\",\"377.7\",\"421.3\",\"533.3\",\"459.4\",\"302.4\",\"452.5\",\"358.9\",\"542.4\",\"521.7\",\"487.0\",\"597.2\",\"632.1\",\"450.9\",\"461.8\",\"411.9\",\"326.2\",\"313.0\",\"543.7\",\"480.0\",\"500.8\",\"559.2\",\"346.5\",\"428.2\",\"301.5\",\"464.9\",\"490.2\",\"562.3\",\"453.1\",\"462.3\",\"390.5\",\"546.8\",\"519.0\",\"470.0\",\"396.7\",\"470.3\",\"368.9\",\"490.4\",\"543.2\",\"496.6\",\"558.3\",\"635.1\",\"587.6\",\"466.6\",\"476.2\",\"362.5\",\"454.2\",\"509.7\",\"442.6\",\"417.7\",\"458.0\",\"538.8\",\"476.5\",\"584.4\",\"384.1\",\"402.6\",\"369.8\",\"508.6\",\"547.4\",\"584.1\",\"420.8\",\"449.6\",\"388.0\",\"537.0\",\"472.5\",\"501.3\",\"560.0\",\"434.1\",\"362.2\",\"337.4\",\"490.3\",\"455.9\",\"467.2\",\"310.8\",\"381.0\",\"449.2\",\"490.5\",\"537.6\",\"466.7\",\"422.0\",\"369.2\",\"398.9\",\"470.7\",\"544.2\",\"496.8\",\"621.7\",\"560.5\",\"626.5\",\"401.9\",\"430.2\",\"409.8\",\"325.7\",\"453.9\",\"479.1\",\"470.1\",\"509.2\",\"594.0\",\"306.4\",\"372.5\",\"308.0\",\"511.5\",\"461.2\",\"542.7\",\"592.9\",\"305.0\",\"451.3\",\"417.3\",\"542.9\",\"472.3\",\"462.3\",\"351.6\",\"346.7\",\"451.4\",\"472.6\",\"521.9\",\"376.2\",\"346.2\",\"378.3\",\"509.7\",\"493.0\",\"463.3\",\"346.7\",\"493.9\",\"334.3\",\"476.8\",\"505.5\",\"469.4\",\"380.6\",\"370.2\",\"422.6\",\"522.4\",\"533.6\",\"467.7\",\"379.5\",\"404.5\",\"343.4\",\"544.8\",\"522.2\",\"528.8\",\"630.7\",\"491.2\",\"478.7\",\"340.9\",\"529.3\",\"467.7\",\"455.1\",\"482.1\",\"333.2\",\"375.4\",\"501.1\",\"530.7\",\"588.3\",\"640.5\",\"315.2\",\"361.2\",\"325.1\",\"533.3\",\"454.0\",\"549.2\",\"421.2\",\"432.8\",\"477.1\",\"502.4\",\"525.4\",\"534.1\",\"573.1\",\"639.1\",\"485.0\",\"372.0\",\"382.9\",\"512.8\",\"450.2\",\"512.4\",\"328.7\",\"487.7\",\"342.5\",\"475.2\",\"452.9\",\"495.2\",\"495.5\",\"497.2\",\"490.6\",\"499.7\",\"416.9\",\"404.9\",\"346.4\",\"453.2\",\"500.0\",\"396.7\",\"391.6\",\"326.5\",\"453.8\",\"479.2\",\"497.1\",\"342.9\",\"317.5\",\"474.3\",\"514.8\",\"544.4\",\"462.7\",\"345.4\",\"414.2\",\"451.7\",\"465.6\",\"466.3\",\"471.1\",\"455.0\",\"639.3\",\"353.9\",\"420.2\",\"452.9\",\"522.7\",\"469.1\",\"387.3\",\"360.5\",\"338.2\",\"475.5\",\"526.8\",\"317.6\",\"382.4\",\"435.4\",\"472.8\",\"540.5\",\"506.7\",\"562.5\",\"467.0\",\"472.8\",\"343.8\",\"483.0\",\"525.4\",\"459.0\",\"378.6\",\"312.9\",\"518.5\",\"528.3\",\"573.3\",\"301.2\",\"374.8\",\"413.3\",\"473.6\",\"513.1\",\"546.0\",\"491.1\",\"469.8\",\"307.3\",\"489.0\",\"548.2\",\"368.9\",\"499.8\",\"389.4\",\"468.6\",\"514.8\",\"490.4\",\"640.4\",\"304.5\",\"372.1\",\"362.1\",\"493.3\",\"542.9\",\"528.4\",\"609.7\",\"451.2\",\"400.3\",\"419.9\",\"504.8\",\"542.3\",\"594.3\",\"580.7\",\"579.0\",\"615.0\",\"466.5\",\"469.2\",\"472.6\",\"331.7\",\"317.5\",\"449.4\",\"371.5\",\"473.1\",\"455.9\",\"523.9\",\"632.7\",\"419.7\",\"468.6\",\"447.0\",\"467.2\",\"530.8\",\"486.4\",\"333.7\",\"458.1\",\"536.7\",\"544.7\",\"423.3\",\"423.4\",\"431.1\",\"520.7\",\"512.2\",\"538.4\",\"625.2\",\"353.5\",\"355.7\",\"428.3\",\"529.1\",\"476.8\",\"576.6\",\"615.9\",\"550.5\",\"462.4\",\"473.0\",\"449.9\",\"412.3\",\"409.7\",\"396.2\",\"472.4\",\"462.0\",\"491.9\",\"456.3\",\"492.5\",\"599.2\",\"422.8\",\"315.3\",\"410.2\",\"478.7\",\"518.5\",\"585.7\",\"349.8\",\"437.2\",\"405.5\",\"543.2\",\"518.8\",\"594.4\",\"425.9\",\"403.5\",\"309.1\",\"483.8\",\"457.9\",\"587.9\",\"617.5\",\"458.5\",\"478.7\",\"450.6\",\"521.8\",\"540.1\",\"459.2\",\"490.4\",\"321.5\",\"457.2\",\"523.7\",\"459.5\",\"560.3\",\"356.5\",\"384.1\",\"304.1\",\"530.4\",\"507.3\",\"429.8\",\"387.8\",\"431.6\",\"538.4\",\"474.9\",\"473.3\",\"473.4\",\"489.7\",\"529.2\",\"543.9\",\"563.1\",\"576.2\",\"395.0\",\"330.0\",\"454.1\",\"460.4\",\"535.1\",\"484.3\",\"470.9\",\"319.3\",\"466.2\",\"519.7\",\"506.2\",\"557.8\",\"355.5\",\"486.4\",\"352.8\",\"466.0\",\"514.8\",\"339.3\",\"305.1\",\"485.8\",\"487.7\",\"458.0\",\"555.1\",\"340.7\",\"443.3\",\"356.5\",\"521.5\",\"508.0\",\"397.9\",\"414.6\",\"304.7\",\"522.6\",\"450.2\",\"477.0\",\"631.6\",\"487.6\",\"347.0\",\"328.9\",\"490.9\",\"530.0\",\"507.9\",\"649.3\",\"375.8\",\"404.0\",\"426.2\",\"493.1\",\"504.2\",\"477.7\",\"620.8\",\"373.5\",\"300.8\",\"456.2\",\"479.8\",\"478.3\",\"464.9\",\"498.4\",\"395.3\",\"485.8\",\"515.2\",\"506.5\",\"474.2\",\"459.4\",\"322.8\",\"460.8\",\"479.6\",\"549.2\",\"490.2\",\"342.8\",\"441.5\",\"502.9\",\"454.7\",\"571.8\",\"568.0\",\"334.2\",\"464.0\",\"497.1\",\"463.1\",\"465.6\",\"414.3\",\"479.5\",\"315.9\",\"493.5\",\"498.6\",\"421.6\",\"411.9\",\"376.5\",\"512.3\",\"488.5\",\"354.3\",\"451.6\",\"334.6\",\"547.5\",\"471.3\",\"456.0\",\"447.3\",\"413.2\",\"452.2\",\"471.0\",\"478.9\",\"594.4\",\"597.2\",\"344.4\",\"311.9\",\"407.0\",\"477.7\",\"467.8\",\"560.5\",\"619.9\",\"594.2\",\"416.0\",\"461.3\",\"334.3\",\"506.6\",\"482.8\",\"548.1\",\"572.6\",\"594.1\",\"474.0\",\"318.2\",\"335.7\",\"454.8\",\"534.3\",\"343.9\",\"303.1\",\"357.8\",\"487.0\",\"465.2\",\"589.1\",\"539.9\",\"592.5\",\"569.4\",\"569.8\",\"423.8\",\"405.3\",\"472.2\",\"465.1\",\"535.7\",\"456.2\",\"337.3\",\"457.7\",\"352.3\",\"459.5\",\"463.0\",\"458.9\",\"389.8\",\"387.8\",\"500.9\",\"542.1\",\"512.4\",\"630.1\",\"371.0\",\"345.5\",\"426.6\",\"471.0\",\"532.6\",\"480.9\",\"340.7\",\"360.3\",\"466.6\",\"487.2\",\"543.2\",\"473.9\",\"577.7\",\"372.4\",\"302.1\",\"314.2\",\"458.0\",\"479.2\",\"481.8\",\"584.1\",\"374.4\",\"332.3\",\"500.0\",\"498.7\",\"532.8\",\"473.3\",\"489.5\",\"490.9\",\"468.9\",\"549.2\",\"501.2\",\"581.5\",\"429.9\",\"413.4\",\"477.9\",\"524.7\",\"488.7\",\"528.1\",\"381.2\",\"413.0\",\"476.4\",\"540.9\",\"505.3\",\"453.9\",\"567.7\",\"378.3\",\"420.6\",\"478.3\",\"473.0\",\"473.4\",\"487.6\",\"638.0\",\"328.5\",\"327.3\",\"380.4\",\"500.5\",\"480.4\",\"579.4\",\"338.0\",\"463.1\",\"365.3\",\"496.7\",\"485.3\",\"548.6\",\"388.3\",\"366.1\",\"420.4\",\"506.3\",\"514.0\",\"557.9\",\"366.0\",\"305.0\",\"493.8\",\"540.5\",\"457.7\",\"495.9\",\"640.7\",\"432.4\",\"471.2\",\"449.4\",\"454.0\",\"515.2\",\"581.9\",\"594.8\",\"426.0\",\"433.9\",\"474.8\",\"534.0\",\"539.3\",\"380.9\",\"329.7\",\"313.8\",\"482.3\",\"462.2\",\"559.0\",\"412.3\",\"393.0\",\"469.4\",\"507.8\",\"501.1\",\"488.3\",\"638.9\",\"494.2\",\"454.7\",\"411.6\",\"496.8\",\"501.4\",\"528.1\",\"608.7\",\"362.8\",\"425.3\",\"396.0\",\"515.2\",\"481.1\",\"452.9\",\"317.8\",\"411.1\",\"529.6\",\"502.2\",\"554.2\",\"464.9\",\"463.2\",\"449.6\",\"548.5\",\"545.5\",\"569.8\",\"635.5\",\"433.4\",\"357.0\",\"314.7\",\"533.2\",\"519.6\",\"527.4\",\"494.5\",\"439.8\",\"380.8\",\"508.1\",\"529.1\",\"453.1\",\"598.5\",\"636.8\",\"450.6\",\"395.5\",\"403.6\",\"492.1\",\"530.9\",\"553.1\",\"372.2\",\"336.9\",\"368.6\",\"468.7\",\"527.3\",\"514.7\",\"374.0\",\"368.1\",\"336.5\",\"472.5\",\"483.0\",\"521.4\",\"481.6\",\"482.1\",\"305.1\",\"497.9\",\"451.2\",\"396.1\",\"377.8\",\"362.9\",\"527.8\",\"548.8\",\"434.6\",\"376.9\",\"395.4\",\"463.0\",\"509.6\",\"303.6\",\"316.7\",\"402.4\",\"471.1\",\"466.0\",\"409.2\",\"394.7\",\"439.5\",\"487.3\",\"491.1\",\"537.7\",\"644.5\",\"446.0\",\"432.6\",\"495.3\",\"509.4\",\"491.6\",\"453.3\",\"562.6\",\"570.8\",\"593.2\",\"458.1\",\"402.4\",\"365.1\",\"349.2\",\"417.1\",\"491.2\",\"544.6\",\"510.6\",\"642.2\",\"372.3\",\"359.7\",\"367.9\",\"497.9\",\"471.8\",\"562.0\",\"600.1\",\"367.2\",\"342.9\",\"425.5\",\"524.1\",\"528.1\",\"448.0\",\"383.3\",\"374.4\",\"533.9\",\"547.9\",\"576.0\",\"431.1\",\"326.4\",\"472.2\",\"497.1\",\"506.5\",\"532.8\",\"626.1\",\"361.4\",\"413.6\",\"399.5\",\"527.7\",\"468.9\",\"497.7\",\"610.0\",\"412.8\",\"494.7\",\"399.1\",\"474.0\",\"465.8\",\"454.1\",\"356.7\",\"462.3\",\"463.2\",\"532.6\",\"534.0\",\"558.4\",\"620.7\",\"327.5\",\"348.8\",\"481.1\",\"514.0\",\"461.6\",\"370.9\",\"436.7\",\"346.7\",\"475.9\",\"513.0\",\"412.3\",\"368.2\",\"415.0\",\"471.3\",\"471.8\",\"547.5\",\"302.1\",\"418.9\",\"399.9\",\"537.4\",\"519.6\",\"519.9\",\"641.3\",\"416.2\",\"483.6\",\"450.7\",\"510.5\",\"504.0\",\"325.3\",\"378.5\",\"363.0\",\"508.5\",\"497.6\",\"480.7\",\"316.7\",\"370.2\",\"437.6\",\"496.8\",\"473.0\",\"547.4\",\"323.7\",\"380.3\",\"399.4\",\"515.3\",\"505.1\",\"525.8\",\"404.5\",\"423.7\",\"454.2\",\"494.5\",\"544.1\",\"481.4\",\"448.6\",\"334.0\",\"399.6\",\"518.2\",\"480.3\",\"494.7\",\"638.6\",\"472.6\",\"398.6\",\"449.1\",\"456.6\",\"498.6\",\"403.7\",\"416.3\",\"498.6\",\"502.6\",\"484.0\",\"588.9\",\"600.7\",\"351.4\",\"333.5\",\"315.7\",\"512.1\",\"485.6\",\"464.3\",\"644.0\",\"590.3\",\"592.0\",\"311.1\",\"490.6\",\"373.7\",\"484.6\",\"535.3\",\"310.4\",\"365.8\",\"496.0\",\"533.9\",\"483.8\",\"468.1\",\"443.3\",\"304.8\",\"420.3\",\"455.1\",\"454.3\",\"508.3\",\"304.5\",\"354.9\",\"440.7\",\"506.7\",\"463.9\",\"459.3\",\"595.9\",\"355.9\",\"352.5\",\"307.1\",\"541.9\",\"519.1\",\"459.5\",\"465.5\",\"457.2\",\"309.3\",\"484.1\",\"458.7\",\"510.3\",\"465.4\",\"619.6\",\"497.3\",\"498.0\",\"453.8\",\"485.1\",\"483.1\",\"465.6\",\"453.8\",\"401.4\",\"331.7\",\"478.4\",\"483.3\",\"505.1\",\"316.6\",\"454.5\",\"454.1\",\"541.0\",\"459.7\",\"554.1\",\"596.2\",\"586.7\",\"411.5\",\"401.3\",\"484.4\",\"396.2\",\"351.5\",\"394.3\",\"478.9\",\"441.7\",\"467.4\",\"526.8\",\"521.6\",\"612.3\",\"492.3\",\"301.4\",\"497.1\",\"482.6\",\"467.6\",\"302.3\",\"383.1\",\"317.9\",\"524.7\",\"549.4\",\"471.3\",\"388.8\",\"352.9\",\"419.1\",\"522.9\",\"536.9\",\"453.3\",\"609.9\",\"340.5\",\"496.0\",\"461.4\",\"476.5\",\"483.7\",\"594.4\",\"604.4\",\"475.4\",\"417.6\",\"307.0\",\"479.8\",\"469.7\",\"324.6\",\"373.5\",\"326.2\",\"543.3\",\"474.6\",\"554.3\",\"351.8\",\"472.2\",\"359.7\",\"544.4\",\"499.5\",\"578.0\",\"595.8\",\"616.1\",\"618.4\",\"648.1\",\"494.4\",\"445.3\",\"419.4\",\"451.7\",\"468.5\",\"511.0\",\"451.4\",\"387.8\",\"319.3\",\"347.0\",\"537.7\",\"474.1\",\"579.5\",\"440.4\",\"314.6\",\"488.0\",\"491.3\",\"491.9\",\"483.2\",\"380.0\",\"418.8\",\"541.2\",\"541.9\",\"470.5\",\"435.3\",\"337.9\",\"397.5\",\"480.1\",\"478.5\",\"525.5\",\"589.1\",\"319.3\",\"336.5\",\"357.3\",\"461.4\",\"528.1\",\"595.0\",\"590.1\",\"344.6\",\"416.9\",\"429.2\",\"519.3\",\"478.0\",\"527.1\",\"647.0\",\"490.0\",\"434.3\",\"422.0\",\"547.7\",\"455.6\",\"594.8\",\"303.1\",\"316.3\",\"408.5\",\"450.9\",\"522.0\",\"497.8\",\"486.7\",\"412.7\",\"536.3\",\"510.3\",\"527.3\",\"362.7\",\"456.8\",\"430.2\",\"455.7\",\"477.5\",\"387.9\",\"338.3\",\"347.6\",\"453.4\",\"548.8\",\"487.8\",\"362.1\",\"446.4\",\"481.7\",\"525.5\",\"518.7\",\"418.2\",\"424.2\",\"355.8\",\"494.9\",\"518.2\",\"531.3\",\"595.3\",\"387.1\",\"386.2\",\"310.3\",\"549.4\",\"537.7\",\"557.1\",\"317.2\",\"466.6\",\"488.8\",\"452.4\",\"453.3\",\"488.6\",\"553.7\",\"428.6\",\"313.5\",\"384.5\",\"522.9\",\"496.3\",\"569.9\",\"463.5\",\"425.9\",\"442.7\",\"475.0\",\"504.0\",\"456.2\",\"431.8\",\"401.2\",\"545.4\",\"474.9\",\"561.2\",\"569.2\",\"638.0\",\"570.4\",\"342.9\",\"492.1\",\"447.3\",\"462.2\",\"482.9\",\"499.0\",\"593.1\",\"408.6\",\"443.7\",\"433.8\",\"542.5\",\"534.9\",\"574.2\",\"593.7\",\"456.8\",\"347.5\",\"330.3\",\"536.9\",\"474.4\",\"522.0\",\"440.0\",\"397.2\",\"389.6\",\"547.2\",\"548.8\",\"319.6\",\"308.5\",\"303.6\",\"491.0\",\"519.5\",\"396.1\",\"306.0\",\"499.8\",\"501.9\",\"484.7\",\"504.1\",\"550.4\",\"330.3\",\"480.0\",\"350.2\",\"527.9\",\"529.6\",\"532.2\",\"641.3\",\"402.2\",\"442.5\",\"329.3\",\"482.2\",\"497.7\",\"479.2\",\"403.9\",\"342.9\",\"483.0\",\"534.7\",\"507.0\",\"626.7\",\"628.1\",\"454.5\",\"479.8\",\"440.6\",\"455.6\",\"325.5\",\"460.8\",\"507.8\",\"486.2\",\"375.3\",\"456.6\",\"349.0\",\"460.4\",\"514.9\",\"490.4\",\"619.0\",\"498.6\",\"375.3\",\"392.2\",\"496.7\",\"491.8\",\"472.0\",\"425.1\",\"313.9\",\"546.7\",\"462.3\",\"343.1\",\"338.1\",\"399.0\",\"487.9\",\"469.8\",\"544.4\",\"484.4\",\"305.6\",\"413.2\",\"502.9\",\"454.3\",\"599.2\",\"385.9\",\"337.9\",\"361.4\",\"472.1\",\"486.4\",\"564.4\",\"339.5\",\"465.5\",\"497.4\",\"521.1\",\"496.0\",\"456.2\",\"542.0\",\"630.2\",\"632.7\",\"439.5\",\"433.1\",\"325.1\",\"482.7\",\"542.5\",\"461.7\",\"556.4\",\"499.0\",\"375.7\",\"461.7\",\"491.4\",\"540.1\",\"591.4\",\"554.7\",\"477.8\",\"466.4\",\"339.6\",\"494.5\",\"472.5\",\"559.7\",\"472.1\",\"412.9\",\"382.4\",\"527.7\",\"451.6\",\"588.3\",\"453.7\",\"324.9\",\"489.9\",\"509.6\",\"496.7\",\"403.0\",\"470.4\",\"351.7\",\"469.7\",\"471.6\",\"484.2\",\"630.7\",\"613.0\",\"454.2\",\"482.3\",\"466.0\",\"401.9\",\"369.7\",\"345.7\",\"467.9\",\"363.5\",\"454.6\",\"521.6\",\"507.0\",\"471.0\",\"576.4\",\"386.3\",\"466.4\",\"445.4\",\"453.7\",\"503.3\",\"509.0\",\"399.5\",\"472.6\",\"463.5\",\"473.5\",\"482.0\",\"549.0\",\"628.3\",\"339.9\",\"335.3\",\"315.4\",\"484.2\",\"458.5\",\"467.2\",\"636.8\",\"456.3\",\"485.1\",\"459.1\",\"450.1\",\"457.9\",\"319.5\",\"307.8\",\"350.5\",\"543.5\",\"536.2\",\"481.7\",\"415.5\",\"347.5\",\"317.3\",\"451.7\",\"507.4\",\"418.4\",\"317.8\",\"473.2\",\"506.8\",\"538.5\",\"574.1\",\"320.9\",\"486.9\",\"487.4\",\"463.6\",\"455.5\",\"473.0\",\"624.9\",\"318.8\",\"478.0\",\"430.3\",\"545.9\",\"519.1\",\"481.6\",\"416.7\",\"392.7\",\"340.8\",\"519.5\",\"509.4\",\"387.0\",\"479.4\",\"340.0\",\"496.3\",\"504.4\",\"554.4\",\"451.5\",\"381.3\",\"332.0\",\"472.4\",\"464.6\",\"499.5\",\"358.2\",\"313.6\",\"371.8\",\"510.8\",\"475.6\",\"467.6\",\"605.7\",\"395.9\",\"418.2\",\"448.7\",\"452.4\",\"539.7\",\"468.1\",\"330.2\",\"398.6\",\"380.1\",\"473.2\",\"454.2\",\"346.0\",\"443.4\",\"378.9\",\"516.6\",\"523.9\",\"387.8\",\"337.9\",\"447.5\",\"462.0\",\"521.6\",\"480.9\",\"349.4\",\"410.0\",\"473.4\",\"523.5\",\"559.2\",\"598.2\",\"373.6\",\"435.5\",\"465.9\",\"499.4\",\"543.8\",\"461.1\",\"400.6\",\"475.6\",\"348.5\",\"544.8\",\"494.4\",\"499.2\",\"316.3\",\"425.8\",\"421.0\",\"536.1\",\"472.9\",\"542.5\",\"467.2\",\"336.5\",\"346.6\",\"539.2\",\"469.7\",\"484.7\",\"565.9\",\"320.3\",\"425.5\",\"300.5\",\"525.0\",\"477.6\",\"492.7\",\"385.9\",\"346.5\",\"332.3\",\"527.2\",\"470.4\",\"494.9\",\"597.3\",\"450.2\",\"409.8\",\"470.5\",\"547.3\",\"502.9\",\"490.0\",\"496.4\",\"307.4\",\"472.1\",\"508.6\",\"459.7\",\"584.0\",\"601.4\",\"319.5\",\"481.8\",\"461.7\",\"548.6\",\"475.6\",\"508.0\",\"557.2\",\"432.9\",\"355.2\",\"438.8\",\"525.9\",\"541.3\",\"490.9\",\"343.6\",\"315.3\",\"466.8\",\"468.4\",\"542.5\",\"570.8\",\"629.8\",\"349.1\",\"372.6\",\"341.4\",\"536.1\",\"482.3\",\"574.0\",\"627.6\",\"594.4\",\"456.4\",\"440.1\",\"468.2\",\"358.9\",\"318.4\",\"358.4\",\"386.1\",\"476.5\",\"470.4\",\"459.7\",\"569.4\",\"577.8\",\"642.6\",\"552.9\",\"574.0\",\"425.7\",\"431.0\",\"313.3\",\"424.0\",\"392.1\",\"459.6\",\"502.0\",\"540.6\",\"639.8\",\"355.1\",\"392.4\",\"333.8\",\"541.8\",\"543.9\",\"504.1\",\"595.7\",\"458.6\",\"329.5\",\"463.8\",\"491.9\",\"522.3\",\"455.6\",\"457.7\",\"428.2\",\"484.7\",\"523.6\",\"470.9\",\"306.5\",\"303.1\",\"360.9\",\"505.6\",\"519.9\",\"407.2\",\"446.3\",\"430.8\",\"543.5\",\"503.0\",\"378.5\",\"414.6\",\"308.5\",\"475.8\",\"458.6\",\"402.6\",\"319.2\",\"369.3\",\"537.5\",\"468.6\",\"490.2\",\"477.5\",\"418.9\",\"504.8\",\"490.9\",\"570.1\",\"569.0\",\"341.7\",\"435.6\",\"393.8\",\"499.6\",\"501.1\",\"359.7\",\"448.0\",\"494.7\",\"485.4\",\"501.9\",\"454.6\",\"448.0\",\"349.0\",\"466.6\",\"526.6\",\"519.4\",\"485.8\",\"460.2\",\"379.0\",\"511.8\",\"503.3\",\"518.1\",\"486.5\",\"352.8\",\"429.6\",\"527.3\",\"475.4\",\"324.4\",\"321.5\",\"488.2\",\"494.3\",\"508.6\",\"334.4\",\"431.7\",\"397.0\",\"508.0\",\"503.4\",\"479.7\",\"599.1\",\"476.4\",\"353.1\",\"304.6\",\"468.2\",\"519.5\",\"482.9\",\"641.0\",\"305.0\",\"323.9\",\"480.9\",\"484.8\",\"502.4\",\"598.4\",\"399.7\",\"477.7\",\"489.7\",\"528.2\",\"467.4\",\"590.1\",\"554.4\",\"303.9\",\"432.2\",\"385.0\",\"544.7\",\"521.1\",\"505.1\",\"627.1\",\"370.2\",\"458.3\",\"365.9\",\"517.1\",\"536.0\",\"444.3\",\"449.2\",\"451.8\",\"511.2\",\"501.3\",\"410.0\",\"365.9\",\"486.4\",\"516.1\",\"522.4\",\"359.0\",\"417.8\",\"416.7\",\"455.0\",\"498.4\",\"590.8\",\"555.4\",\"600.2\",\"435.3\",\"456.1\",\"448.3\",\"316.6\",\"371.7\",\"319.6\",\"450.6\",\"402.2\",\"403.1\",\"433.0\",\"481.0\",\"470.1\",\"476.0\",\"350.6\",\"471.6\",\"481.8\",\"497.5\",\"428.6\",\"307.8\",\"310.7\",\"494.3\",\"478.4\",\"467.6\",\"328.5\",\"468.9\",\"427.3\",\"458.3\",\"471.0\",\"474.9\",\"364.8\",\"445.5\",\"401.8\",\"472.3\",\"498.6\",\"408.0\",\"461.1\",\"498.3\",\"529.8\",\"512.0\",\"394.0\",\"487.8\",\"360.9\",\"471.4\",\"478.9\",\"532.0\",\"591.9\",\"390.1\",\"482.2\",\"483.8\",\"492.2\",\"491.4\",\"546.5\",\"372.0\",\"388.8\",\"385.6\",\"451.6\",\"518.0\",\"452.0\",\"635.0\",\"476.9\",\"437.2\",\"369.6\",\"457.4\",\"458.1\",\"533.1\",\"356.8\",\"420.5\",\"387.3\",\"452.8\",\"460.6\",\"560.7\",\"319.8\",\"486.7\",\"305.5\",\"539.1\",\"540.8\",\"483.8\",\"458.0\",\"365.3\",\"392.6\",\"516.5\",\"515.5\",\"520.3\",\"600.5\",\"475.3\",\"391.4\",\"359.8\",\"531.1\",\"457.6\",\"490.9\",\"362.9\",\"415.2\",\"383.4\",\"538.3\",\"548.2\",\"573.3\",\"603.6\",\"347.1\",\"380.8\",\"375.5\",\"523.1\",\"473.2\",\"478.2\",\"611.1\",\"382.7\",\"403.2\",\"385.0\",\"498.5\",\"525.0\",\"512.3\",\"377.9\",\"347.2\",\"381.0\",\"503.3\",\"469.8\",\"375.5\",\"355.6\",\"306.4\",\"456.1\",\"537.1\",\"314.9\",\"341.1\",\"310.5\",\"508.7\",\"459.9\",\"401.2\",\"447.9\",\"426.1\",\"488.5\",\"523.4\",\"464.1\",\"359.3\",\"315.8\",\"412.4\",\"452.2\",\"461.4\",\"330.0\",\"451.5\",\"311.0\",\"529.2\",\"505.6\",\"505.3\",\"573.7\",\"379.0\",\"483.6\",\"487.4\",\"472.4\",\"462.0\",\"450.1\",\"474.6\",\"331.8\",\"406.5\",\"536.8\",\"458.7\",\"472.7\",\"479.9\",\"320.2\",\"535.4\",\"475.7\",\"470.4\",\"308.9\",\"478.1\",\"492.8\",\"471.4\",\"516.8\",\"621.5\",\"560.1\",\"629.4\",\"483.8\",\"462.7\",\"310.9\",\"360.4\",\"516.8\",\"549.1\",\"337.6\",\"428.2\",\"478.0\",\"495.9\",\"451.8\",\"431.9\",\"491.1\",\"495.3\",\"500.2\",\"522.7\",\"570.0\",\"486.1\",\"388.6\",\"410.7\",\"525.8\",\"544.9\",\"591.9\",\"605.1\",\"316.1\",\"359.8\",\"466.9\",\"455.0\",\"513.6\",\"546.4\",\"340.6\",\"347.9\",\"408.3\",\"479.6\",\"498.2\",\"323.0\",\"306.6\",\"480.4\",\"484.3\",\"474.7\",\"320.2\",\"471.6\",\"470.4\",\"498.5\",\"478.6\",\"519.8\",\"634.4\",\"307.5\",\"435.1\",\"431.6\",\"523.5\",\"506.5\",\"574.2\",\"489.1\",\"307.4\",\"477.7\",\"455.9\",\"494.7\",\"485.7\",\"643.8\",\"475.0\",\"433.5\",\"476.6\",\"548.8\",\"539.6\",\"338.1\",\"369.0\",\"355.2\",\"543.4\",\"490.9\",\"550.3\",\"440.4\",\"375.3\",\"401.1\",\"541.8\",\"483.1\",\"486.8\",\"582.4\",\"396.6\",\"392.3\",\"412.3\",\"493.1\",\"453.6\",\"579.1\",\"343.3\",\"437.2\",\"375.5\",\"461.1\",\"479.3\",\"514.0\",\"598.1\",\"624.8\",\"632.3\",\"371.5\",\"397.5\",\"406.5\",\"542.2\",\"506.6\",\"303.3\",\"438.7\",\"376.6\",\"517.6\",\"483.3\",\"469.6\",\"382.2\",\"342.6\",\"516.0\",\"470.6\",\"525.8\",\"314.6\",\"336.7\",\"318.0\",\"454.7\",\"548.6\",\"467.3\",\"315.7\",\"474.9\",\"528.2\",\"505.4\",\"302.9\",\"301.9\",\"369.8\",\"497.8\",\"469.6\",\"453.7\",\"649.0\",\"308.5\",\"432.6\",\"311.1\",\"514.0\",\"460.7\",\"565.9\",\"635.1\",\"629.3\",\"574.8\",\"467.7\",\"499.2\",\"491.9\",\"392.5\",\"456.2\",\"373.4\",\"452.8\",\"486.7\",\"468.6\",\"594.1\",\"307.6\",\"333.7\",\"342.0\",\"491.7\",\"501.8\",\"596.9\",\"338.1\",\"360.3\",\"447.1\",\"452.3\",\"546.1\",\"465.4\",\"410.6\",\"405.6\",\"461.0\",\"497.5\",\"529.8\",\"608.4\",\"314.2\",\"374.5\",\"415.7\",\"475.8\",\"472.2\",\"545.0\",\"406.8\",\"484.3\",\"425.7\",\"525.6\",\"514.1\",\"578.3\",\"433.1\",\"410.5\",\"326.0\",\"529.2\",\"502.2\",\"418.9\",\"322.9\",\"364.6\",\"518.6\",\"474.1\",\"510.2\",\"315.8\",\"435.5\",\"306.8\",\"527.8\",\"483.2\",\"497.0\",\"375.1\",\"435.2\",\"329.9\",\"478.0\",\"468.8\",\"595.0\",\"615.4\",\"600.1\",\"560.1\",\"462.3\",\"466.3\",\"481.8\",\"441.7\",\"473.6\",\"463.6\",\"469.7\",\"410.8\",\"434.3\",\"434.8\",\"492.5\",\"526.1\",\"339.4\",\"316.3\",\"395.5\",\"523.4\",\"505.0\",\"490.3\",\"445.5\",\"376.3\",\"485.9\",\"483.5\",\"340.2\",\"369.0\",\"411.8\",\"476.7\",\"477.7\",\"472.9\",\"434.7\",\"491.2\",\"521.8\",\"474.0\",\"457.1\",\"585.2\",\"455.9\",\"444.8\",\"431.6\",\"542.5\",\"537.1\",\"453.0\",\"647.3\",\"487.3\",\"364.2\",\"457.9\",\"453.6\",\"509.8\",\"556.0\",\"335.2\",\"364.3\",\"379.7\",\"507.8\",\"547.0\",\"593.4\",\"589.2\",\"418.7\",\"372.1\",\"397.4\",\"471.6\",\"503.2\",\"377.8\",\"471.7\",\"369.4\",\"490.9\",\"543.4\",\"482.4\",\"637.6\",\"428.9\",\"383.8\",\"369.0\",\"496.8\",\"467.6\",\"540.3\",\"313.3\",\"341.4\",\"357.6\",\"496.3\",\"516.2\",\"583.3\",\"390.8\",\"358.1\",\"304.0\",\"516.5\",\"472.6\",\"537.3\",\"610.2\",\"375.1\",\"363.9\",\"440.5\",\"531.5\",\"519.8\",\"467.6\",\"564.7\",\"470.7\",\"411.9\",\"418.7\",\"538.6\",\"479.3\",\"581.1\",\"373.9\",\"305.9\",\"325.4\",\"519.1\",\"545.1\",\"554.7\",\"433.4\",\"310.7\",\"339.1\",\"506.2\",\"547.6\",\"361.1\",\"442.5\",\"434.7\",\"534.0\",\"530.7\",\"518.6\",\"580.3\",\"466.3\",\"482.9\",\"436.0\",\"491.3\",\"489.9\",\"452.3\",\"432.0\",\"363.0\",\"338.5\",\"523.4\",\"540.8\",\"481.0\",\"618.3\",\"316.8\",\"318.4\",\"338.8\",\"518.1\",\"544.7\",\"372.7\",\"304.6\",\"473.7\",\"455.5\",\"472.0\",\"566.0\",\"611.8\",\"475.7\",\"499.1\",\"433.3\",\"479.1\",\"476.0\",\"598.0\",\"333.7\",\"395.6\",\"400.6\",\"458.2\",\"459.2\",\"552.9\",\"583.9\",\"433.4\",\"373.1\",\"405.6\",\"527.4\",\"473.6\",\"496.9\",\"479.6\",\"357.4\",\"377.4\",\"507.4\",\"474.8\",\"473.3\",\"333.6\",\"421.2\",\"513.7\",\"452.3\",\"573.4\",\"468.5\",\"428.3\",\"337.1\",\"502.8\",\"548.9\",\"417.6\",\"487.0\",\"318.3\",\"536.9\",\"524.3\",\"509.4\",\"398.8\",\"367.6\",\"358.7\",\"500.5\",\"452.5\",\"589.4\",\"572.9\",\"369.5\",\"320.4\",\"449.0\",\"460.6\",\"483.2\",\"406.0\",\"394.4\",\"387.3\",\"537.8\",\"492.7\",\"475.9\",\"390.3\",\"335.8\",\"396.9\",\"528.7\",\"499.1\",\"568.6\",\"562.0\",\"420.3\",\"345.6\",\"315.0\",\"488.1\",\"462.4\",\"490.8\",\"628.5\",\"465.7\",\"302.3\",\"334.3\",\"548.0\",\"485.0\",\"571.1\",\"595.2\",\"385.5\",\"324.9\",\"332.8\",\"458.2\",\"489.1\",\"462.0\",\"551.5\",\"329.3\",\"386.3\",\"322.9\",\"487.8\",\"532.5\",\"589.4\",\"421.0\",\"433.7\",\"400.9\",\"461.6\",\"508.7\",\"558.6\",\"499.6\",\"610.7\",\"628.1\",\"395.5\",\"383.9\",\"451.3\",\"537.2\",\"460.2\",\"476.8\",\"396.1\",\"442.7\",\"349.3\",\"472.0\",\"530.4\",\"329.7\",\"367.4\",\"440.0\",\"520.1\",\"502.1\",\"419.1\",\"411.6\",\"440.5\",\"467.2\",\"475.5\",\"434.2\",\"492.1\",\"482.9\",\"530.6\",\"494.4\",\"499.5\",\"550.9\",\"491.6\",\"482.6\",\"383.8\",\"450.3\",\"456.2\",\"581.0\",\"408.3\",\"401.5\",\"447.1\",\"491.3\",\"515.4\",\"574.2\",\"604.0\",\"349.8\",\"387.9\",\"332.1\",\"504.5\",\"529.2\",\"520.6\",\"584.9\",\"463.3\",\"450.5\",\"327.3\",\"541.9\",\"495.8\",\"340.6\",\"316.8\",\"418.9\",\"533.6\",\"502.7\",\"459.8\",\"556.4\",\"621.1\",\"495.8\",\"404.7\",\"421.7\",\"338.5\",\"431.9\",\"353.1\",\"355.8\",\"493.5\",\"503.7\",\"494.1\",\"457.4\",\"476.3\",\"480.7\",\"537.8\",\"453.8\",\"390.0\",\"493.8\",\"480.0\",\"522.9\",\"503.9\",\"352.7\",\"380.9\",\"301.3\",\"454.1\",\"499.1\",\"557.6\",\"560.0\",\"465.7\",\"321.1\",\"315.6\",\"457.8\",\"478.7\",\"355.8\",\"480.3\",\"466.8\",\"505.1\",\"511.8\",\"532.8\",\"599.2\",\"443.4\",\"418.1\",\"470.7\",\"457.8\",\"548.4\",\"505.3\",\"619.6\",\"357.8\",\"319.5\",\"324.9\",\"509.9\",\"497.3\",\"599.6\",\"400.5\",\"451.8\",\"460.7\",\"495.4\",\"487.0\",\"481.1\",\"470.4\",\"336.4\",\"548.6\",\"487.1\",\"580.3\",\"436.1\",\"359.9\",\"449.7\",\"492.3\",\"479.2\",\"516.2\",\"560.8\",\"467.6\",\"363.8\",\"468.3\",\"503.4\",\"532.0\",\"302.1\",\"451.6\",\"392.4\",\"486.8\",\"544.1\",\"472.6\",\"389.9\",\"428.7\",\"467.0\",\"461.3\",\"569.3\",\"562.3\",\"437.0\",\"304.4\",\"407.2\",\"522.7\",\"467.2\",\"567.6\",\"585.4\",\"378.5\",\"316.8\",\"413.5\",\"520.2\",\"533.5\",\"426.7\",\"480.7\",\"479.3\",\"464.2\",\"540.7\",\"466.3\",\"505.9\",\"622.8\",\"639.6\",\"463.7\",\"431.4\",\"384.5\",\"529.3\",\"519.9\",\"432.5\",\"489.5\",\"374.4\",\"539.7\",\"476.6\",\"561.9\",\"625.6\",\"366.7\",\"412.5\",\"352.6\",\"542.2\",\"464.4\",\"535.9\",\"300.9\",\"367.1\",\"436.6\",\"508.5\",\"461.7\",\"484.0\",\"472.7\",\"406.4\",\"474.5\",\"518.8\",\"318.3\",\"476.9\",\"334.2\",\"533.9\",\"513.0\",\"491.0\",\"308.8\",\"358.8\",\"469.5\",\"453.5\",\"481.1\",\"581.0\",\"486.5\",\"365.9\",\"463.4\",\"490.7\",\"453.3\",\"513.2\",\"311.0\",\"488.5\",\"331.7\",\"453.5\",\"517.4\",\"523.6\",\"563.6\",\"410.6\",\"384.4\",\"424.3\",\"536.8\",\"472.0\",\"551.4\",\"633.8\",\"397.8\",\"368.7\",\"456.6\",\"486.1\",\"472.3\",\"518.0\",\"567.3\",\"396.2\",\"368.3\",\"375.8\",\"517.0\",\"465.4\",\"500.8\",\"622.2\",\"476.7\",\"326.0\",\"455.1\",\"512.8\",\"462.7\",\"524.6\",\"470.2\",\"407.1\",\"333.9\",\"420.9\",\"468.5\",\"510.5\",\"584.2\",\"578.5\",\"325.2\",\"399.9\",\"356.5\",\"512.7\",\"534.4\",\"487.3\",\"376.5\",\"399.9\",\"395.2\",\"509.9\",\"518.3\",\"580.3\",\"558.7\",\"398.2\",\"413.0\",\"430.1\",\"510.5\",\"543.9\",\"457.2\",\"469.0\",\"361.2\",\"345.7\",\"509.5\",\"480.6\",\"405.1\",\"381.6\",\"420.0\",\"512.7\",\"458.6\",\"537.8\",\"314.3\",\"441.7\",\"467.5\",\"453.5\",\"492.4\",\"497.2\",\"413.7\",\"367.5\",\"499.9\",\"522.5\",\"486.7\",\"545.5\",\"571.9\",\"420.5\",\"364.7\",\"397.2\",\"545.1\",\"479.1\",\"427.7\",\"468.3\",\"405.9\",\"479.4\",\"489.2\",\"580.6\",\"597.7\",\"573.4\",\"405.7\",\"318.6\",\"391.1\",\"483.5\",\"459.9\",\"479.0\",\"530.3\",\"378.3\",\"451.0\",\"313.4\",\"541.0\",\"527.7\",\"563.5\",\"487.7\",\"334.8\",\"404.6\",\"516.3\",\"466.4\",\"563.6\",\"348.0\",\"478.3\",\"471.8\",\"507.1\",\"499.5\",\"591.4\",\"496.6\",\"431.0\",\"457.9\",\"549.1\",\"529.2\",\"377.5\",\"399.0\",\"426.7\",\"543.1\",\"506.0\",\"596.8\",\"496.4\",\"306.8\",\"479.3\",\"492.1\",\"496.3\",\"507.9\",\"634.4\",\"341.5\",\"366.6\",\"418.0\",\"515.3\",\"525.7\",\"336.9\",\"361.4\",\"438.7\",\"487.2\",\"522.4\",\"537.7\",\"615.2\",\"455.6\",\"468.0\",\"494.4\",\"457.7\",\"506.3\",\"503.4\",\"639.8\",\"378.2\",\"447.6\",\"454.0\",\"536.0\",\"497.0\",\"349.9\",\"459.0\",\"341.2\",\"502.0\",\"483.1\",\"447.2\",\"467.0\",\"315.9\",\"528.9\",\"493.8\",\"562.7\",\"453.3\",\"418.6\",\"315.5\",\"473.4\",\"465.8\",\"587.2\",\"584.9\",\"644.8\",\"470.8\",\"461.7\",\"495.4\",\"411.2\",\"480.1\",\"461.2\",\"435.7\",\"496.6\",\"492.2\",\"476.3\",\"486.1\",\"448.2\",\"488.7\",\"497.5\",\"475.9\",\"434.6\",\"404.9\",\"351.7\",\"458.4\",\"491.3\",\"576.2\",\"497.4\",\"496.0\",\"433.3\",\"495.3\",\"476.9\",\"514.5\",\"343.2\",\"366.1\",\"310.4\",\"496.6\",\"548.1\",\"572.8\",\"444.1\",\"367.4\",\"325.0\",\"542.9\",\"452.9\",\"568.6\",\"410.1\",\"465.4\",\"314.6\",\"466.1\",\"503.3\",\"446.9\",\"458.3\",\"375.7\",\"485.3\",\"503.9\",\"585.7\",\"441.1\",\"333.3\",\"310.8\",\"452.1\",\"547.7\",\"305.8\",\"320.9\",\"348.6\",\"536.2\",\"545.1\",\"487.1\",\"604.8\",\"365.3\",\"474.3\",\"384.6\",\"483.3\",\"465.9\",\"514.7\",\"393.6\",\"416.1\",\"438.6\",\"546.9\",\"516.2\",\"554.0\",\"647.1\",\"398.9\",\"485.4\",\"321.3\",\"483.7\",\"470.1\",\"586.8\",\"599.1\",\"435.8\",\"307.6\",\"448.7\",\"514.8\",\"532.5\",\"550.6\",\"305.0\",\"315.6\",\"432.9\",\"543.0\",\"503.8\",\"567.5\",\"604.9\",\"365.2\",\"382.7\",\"358.6\",\"468.2\",\"519.8\",\"393.1\",\"425.3\",\"430.4\",\"450.9\",\"474.4\",\"400.9\",\"465.1\",\"404.5\",\"464.1\",\"537.2\",\"365.4\",\"385.1\",\"459.3\",\"535.1\",\"505.8\",\"517.3\",\"564.8\",\"596.5\",\"594.4\",\"467.9\",\"482.1\",\"394.5\",\"504.1\",\"528.7\",\"487.7\",\"446.8\",\"426.9\",\"462.6\",\"539.2\",\"537.3\",\"311.5\",\"327.6\",\"355.8\",\"526.2\",\"480.4\",\"578.8\",\"495.6\",\"392.0\",\"412.0\",\"510.2\",\"458.0\",\"521.4\",\"604.7\",\"313.7\",\"330.1\",\"350.0\",\"497.5\",\"506.0\",\"515.2\",\"583.0\",\"562.5\",\"589.3\",\"486.2\",\"483.5\",\"377.5\",\"465.9\",\"526.5\",\"486.7\",\"493.0\",\"429.4\",\"324.6\",\"540.6\",\"548.8\",\"345.0\",\"381.3\",\"397.3\",\"514.6\",\"485.2\",\"477.7\",\"622.5\",\"495.2\",\"368.1\",\"460.8\",\"503.5\",\"479.9\",\"591.4\",\"620.0\",\"438.4\",\"320.3\",\"403.6\",\"504.3\",\"479.2\",\"337.1\",\"380.8\",\"362.8\",\"538.9\",\"498.3\",\"496.5\",\"580.9\",\"313.2\",\"395.8\",\"373.0\",\"498.4\",\"531.8\",\"494.1\",\"581.5\",\"475.7\",\"328.9\",\"351.1\",\"501.3\",\"490.8\",\"497.3\",\"468.7\",\"488.1\",\"465.9\",\"481.1\",\"446.8\",\"415.7\",\"463.1\",\"452.1\",\"496.0\",\"353.2\",\"442.5\",\"416.1\",\"511.2\",\"452.5\",\"389.0\",\"389.5\",\"479.3\",\"491.8\",\"522.7\",\"330.6\",\"353.0\",\"326.9\",\"526.6\",\"477.9\",\"575.5\",\"581.0\",\"478.4\",\"369.9\",\"319.8\",\"494.6\",\"518.4\",\"420.6\",\"456.1\",\"455.8\",\"542.7\",\"470.4\",\"347.8\",\"391.9\",\"343.4\",\"501.3\",\"494.1\",\"466.8\",\"395.1\",\"397.0\",\"424.6\",\"525.9\",\"476.2\",\"376.9\",\"363.3\",\"494.5\",\"460.9\",\"461.6\",\"499.4\",\"635.1\",\"475.4\",\"407.2\",\"349.4\",\"470.5\",\"487.7\",\"483.0\",\"627.4\",\"326.0\",\"463.6\",\"415.0\",\"530.7\",\"466.6\",\"402.0\",\"428.5\",\"387.5\",\"453.4\",\"469.8\",\"546.6\",\"431.9\",\"492.9\",\"472.6\",\"531.2\",\"539.6\",\"510.7\",\"623.3\",\"341.9\",\"452.2\",\"445.9\",\"472.9\",\"529.5\",\"587.6\",\"411.5\",\"454.2\",\"420.3\",\"539.7\",\"497.6\",\"516.6\",\"615.9\",\"552.8\",\"438.8\",\"406.2\",\"393.3\",\"380.6\",\"373.4\",\"509.9\",\"490.2\",\"524.6\",\"641.8\",\"603.4\",\"404.5\",\"430.2\",\"469.6\",\"401.0\",\"346.8\",\"308.6\",\"467.8\",\"479.9\",\"528.9\",\"488.0\",\"390.2\",\"365.3\",\"482.5\",\"466.1\",\"472.1\",\"479.2\",\"487.7\",\"327.8\",\"496.1\",\"525.9\",\"578.9\",\"645.6\",\"374.3\",\"375.3\",\"465.2\",\"481.5\",\"515.0\",\"542.2\",\"645.1\",\"332.9\",\"429.3\",\"498.2\",\"475.5\",\"523.7\",\"463.4\",\"409.9\",\"415.5\",\"340.1\",\"485.4\",\"478.1\",\"492.6\",\"570.0\",\"451.2\",\"499.2\",\"404.0\",\"545.1\",\"540.4\",\"525.9\",\"637.9\",\"460.0\",\"372.3\",\"493.9\",\"468.3\",\"514.9\",\"307.2\",\"334.8\",\"438.3\",\"478.7\",\"455.6\",\"485.6\",\"602.0\",\"369.1\",\"330.9\",\"302.3\",\"503.1\",\"457.0\",\"458.1\",\"486.7\",\"330.8\",\"485.4\",\"547.2\",\"588.2\",\"566.8\",\"357.0\",\"491.0\",\"375.0\",\"468.2\",\"534.7\",\"483.2\",\"492.2\",\"317.2\",\"313.7\",\"495.6\",\"498.0\",\"370.3\",\"358.0\",\"411.6\",\"523.1\",\"528.9\",\"479.4\",\"558.0\",\"568.7\",\"439.2\",\"431.5\",\"496.8\",\"444.5\",\"332.5\",\"492.1\",\"453.8\",\"310.4\",\"489.5\",\"522.0\",\"320.6\",\"470.7\",\"359.7\",\"459.2\",\"477.8\",\"594.7\",\"561.7\",\"440.8\",\"444.8\",\"356.4\",\"506.9\",\"507.4\",\"523.2\",\"565.6\",\"360.8\",\"321.2\",\"371.7\",\"474.1\",\"504.5\",\"505.6\",\"550.2\",\"327.7\",\"450.0\",\"417.9\",\"538.8\",\"460.2\",\"456.6\",\"402.9\",\"485.6\",\"419.9\",\"539.0\",\"520.1\",\"454.0\",\"561.7\",\"331.1\",\"428.4\",\"491.7\",\"520.4\",\"524.6\",\"479.5\",\"424.4\",\"495.1\",\"477.4\",\"511.7\",\"492.1\",\"444.6\",\"464.7\",\"546.9\",\"514.7\",\"526.0\",\"349.5\",\"404.9\",\"441.4\",\"479.2\",\"485.8\",\"544.6\",\"406.3\",\"344.4\",\"496.8\",\"477.7\",\"522.4\",\"571.7\",\"589.2\",\"336.6\",\"303.3\",\"439.7\",\"498.6\",\"509.6\",\"551.4\",\"387.8\",\"472.8\",\"339.0\",\"461.6\",\"513.7\",\"470.9\",\"342.5\",\"366.8\",\"446.7\",\"544.4\",\"461.1\",\"523.3\",\"477.5\",\"437.0\",\"387.6\",\"537.2\",\"510.4\",\"451.7\",\"567.4\",\"419.7\",\"488.8\",\"425.7\",\"501.0\",\"491.1\",\"551.5\",\"558.3\",\"477.1\",\"464.5\",\"345.7\",\"455.7\",\"473.3\",\"562.1\",\"560.5\",\"344.1\",\"378.9\",\"322.7\",\"479.3\",\"548.9\",\"593.2\",\"436.8\",\"444.8\",\"434.1\",\"540.6\",\"490.9\",\"559.8\",\"468.5\",\"580.9\",\"639.7\",\"490.5\",\"350.0\",\"418.4\",\"475.2\",\"473.0\",\"505.1\",\"444.1\",\"453.2\",\"402.1\",\"523.0\",\"463.3\",\"401.6\",\"476.0\",\"414.5\",\"548.6\",\"461.3\",\"514.1\",\"571.3\",\"311.0\",\"444.0\",\"446.8\",\"503.4\",\"459.5\",\"339.2\",\"396.2\",\"447.4\",\"462.8\",\"513.4\",\"589.2\",\"550.4\",\"368.4\",\"455.3\",\"476.1\",\"507.7\",\"518.9\",\"528.1\",\"468.1\",\"470.1\",\"482.0\",\"498.1\",\"530.9\",\"331.6\",\"452.8\",\"380.5\",\"516.5\",\"525.4\",\"485.7\",\"642.7\",\"327.9\",\"389.8\",\"445.6\",\"453.4\",\"458.1\",\"480.1\",\"570.5\",\"621.9\",\"580.3\",\"551.9\",\"400.1\",\"424.7\",\"308.1\",\"472.8\",\"384.8\",\"539.8\",\"476.6\",\"461.4\",\"425.8\",\"430.7\",\"525.8\",\"477.5\",\"475.5\",\"618.6\",\"457.0\",\"459.4\",\"349.5\",\"460.7\",\"512.7\",\"523.3\",\"371.9\",\"394.6\",\"356.4\",\"475.8\",\"476.5\",\"373.8\",\"387.9\",\"326.6\",\"523.9\",\"475.6\",\"486.9\",\"639.0\",\"386.7\",\"385.4\",\"320.0\",\"547.5\",\"533.4\",\"488.0\",\"584.9\",\"387.9\",\"487.6\",\"392.1\",\"470.6\",\"490.5\",\"584.2\",\"313.4\",\"373.4\",\"350.0\",\"542.3\",\"537.0\",\"598.2\",\"561.7\",\"469.8\",\"439.9\",\"323.3\",\"528.3\",\"461.2\",\"494.4\",\"310.5\",\"393.9\",\"312.1\",\"461.0\",\"473.5\",\"528.3\",\"596.0\",\"607.0\",\"575.0\",\"429.0\",\"450.6\",\"458.7\",\"302.6\",\"463.6\",\"350.9\",\"516.3\",\"471.0\",\"308.4\",\"458.7\",\"357.6\",\"464.9\",\"543.2\",\"302.5\",\"396.4\",\"406.6\",\"501.0\",\"494.4\",\"521.8\",\"611.3\",\"307.2\",\"375.3\",\"461.8\",\"472.1\",\"488.9\",\"550.1\",\"608.0\",\"586.2\",\"624.4\",\"464.7\",\"463.8\",\"476.0\",\"410.0\",\"545.5\",\"454.5\",\"503.4\",\"647.5\",\"442.8\",\"424.7\",\"433.5\",\"488.4\",\"485.4\",\"571.9\",\"618.7\",\"485.8\",\"353.9\",\"489.9\",\"526.1\",\"506.2\",\"475.5\",\"490.0\",\"463.2\",\"470.0\",\"520.5\",\"320.6\",\"440.6\",\"327.7\",\"483.6\",\"518.6\",\"327.4\",\"380.3\",\"329.7\",\"463.4\",\"513.9\",\"473.7\",\"402.1\",\"380.1\",\"464.1\",\"521.2\",\"421.8\",\"467.8\",\"382.6\",\"496.4\",\"509.2\",\"487.7\",\"324.0\",\"399.6\",\"398.5\",\"504.3\",\"523.8\",\"393.8\",\"318.3\",\"362.0\",\"510.5\",\"499.8\",\"473.2\",\"604.1\",\"352.3\",\"459.1\",\"444.6\",\"478.5\",\"512.9\",\"507.8\",\"307.2\",\"376.0\",\"402.0\",\"464.0\",\"464.7\",\"587.2\",\"554.7\",\"304.7\",\"487.7\",\"331.3\",\"475.7\",\"502.5\",\"477.3\",\"361.9\",\"473.6\",\"494.4\",\"533.6\",\"524.3\",\"492.5\",\"381.9\",\"366.4\",\"452.9\",\"478.7\",\"510.6\",\"492.7\",\"427.0\",\"396.9\",\"337.8\",\"482.0\",\"518.5\",\"584.0\",\"309.1\",\"407.3\",\"361.8\",\"490.7\",\"519.0\",\"514.6\",\"384.0\",\"378.6\",\"499.4\",\"499.8\",\"523.7\",\"565.8\",\"629.3\",\"397.4\",\"415.9\",\"316.3\",\"453.3\",\"542.6\",\"360.1\",\"344.4\",\"335.0\",\"481.8\",\"533.5\",\"541.3\",\"475.6\",\"332.0\",\"303.4\",\"485.5\",\"547.0\",\"536.3\",\"568.2\",\"319.0\",\"485.3\",\"322.0\",\"540.4\",\"511.5\",\"535.8\",\"397.8\",\"301.6\",\"348.7\",\"520.5\",\"509.9\",\"533.1\",\"432.0\",\"409.1\",\"475.8\",\"519.7\",\"521.0\",\"378.1\",\"335.5\",\"312.7\",\"531.6\",\"452.0\",\"478.7\",\"395.8\",\"485.5\",\"457.7\",\"477.5\",\"495.2\",\"414.4\",\"353.3\",\"347.7\",\"455.6\",\"534.3\",\"515.1\",\"304.6\",\"395.0\",\"381.5\",\"519.6\",\"451.9\",\"579.4\",\"352.2\",\"334.8\",\"362.0\",\"471.4\",\"484.0\",\"596.9\",\"331.5\",\"366.5\",\"399.6\",\"471.7\",\"471.2\",\"568.5\",\"639.0\",\"481.9\",\"312.3\",\"456.7\",\"486.5\",\"475.4\",\"487.2\",\"555.8\",\"410.5\",\"403.4\",\"360.0\",\"485.8\",\"477.3\",\"515.8\",\"357.3\",\"397.6\",\"498.4\",\"516.3\",\"504.6\",\"462.4\",\"623.5\",\"377.3\",\"471.2\",\"478.5\",\"495.0\",\"541.4\",\"447.5\",\"301.2\",\"477.4\",\"457.6\",\"520.5\",\"546.5\",\"311.5\",\"411.0\",\"405.0\",\"523.2\",\"522.7\",\"486.9\",\"444.7\",\"355.7\",\"391.5\",\"546.1\",\"504.7\",\"591.0\",\"589.3\",\"470.8\",\"480.1\",\"313.6\",\"473.3\",\"513.9\",\"573.5\",\"577.8\",\"345.9\",\"463.4\",\"314.4\",\"531.3\",\"458.6\",\"452.4\",\"454.7\",\"370.4\",\"494.0\",\"464.8\",\"541.6\",\"543.5\",\"452.3\",\"494.8\",\"349.4\",\"546.4\",\"503.9\",\"465.1\",\"588.7\",\"372.8\",\"445.9\",\"383.8\",\"507.6\",\"534.0\",\"312.3\",\"409.7\",\"440.6\",\"467.8\",\"489.2\",\"516.8\",\"589.7\",\"570.5\",\"425.1\",\"418.2\",\"488.9\",\"428.4\",\"300.9\",\"333.9\",\"494.6\",\"465.4\",\"456.2\",\"489.5\",\"473.4\",\"384.5\",\"487.4\",\"481.0\",\"524.5\",\"491.5\",\"516.8\",\"330.6\",\"474.6\",\"321.6\",\"497.7\",\"508.9\",\"377.6\",\"372.5\",\"472.2\",\"539.7\",\"548.0\",\"445.1\",\"360.9\",\"493.2\",\"521.0\",\"520.0\",\"503.0\",\"316.5\",\"367.8\",\"354.7\",\"543.0\",\"487.4\",\"494.3\",\"474.3\",\"480.9\",\"474.7\",\"477.1\",\"456.0\",\"380.4\",\"422.9\",\"493.7\",\"451.0\",\"519.7\",\"318.0\",\"383.1\",\"345.6\",\"481.2\",\"476.6\",\"557.7\",\"618.2\",\"349.9\",\"442.1\",\"323.5\",\"451.4\",\"498.5\",\"470.0\",\"473.0\",\"300.1\",\"459.5\",\"541.1\",\"482.9\",\"634.0\",\"351.3\",\"415.1\",\"381.7\",\"454.8\",\"484.0\",\"387.1\",\"380.0\",\"489.5\",\"543.2\",\"473.2\",\"544.6\",\"386.2\",\"324.3\",\"309.9\",\"481.6\",\"505.0\",\"465.7\",\"566.9\",\"463.5\",\"398.2\",\"313.0\",\"505.3\",\"468.6\",\"574.7\",\"577.9\",\"438.3\",\"322.7\",\"307.0\",\"511.9\",\"492.3\",\"545.9\",\"331.2\",\"369.2\",\"351.5\",\"456.1\",\"549.5\",\"581.4\",\"393.8\",\"306.7\",\"410.6\",\"533.9\",\"538.3\",\"483.0\",\"497.2\",\"393.3\",\"496.9\",\"525.1\",\"518.2\",\"588.7\",\"415.0\",\"405.1\",\"466.5\",\"521.6\",\"522.3\",\"395.6\",\"387.1\",\"349.9\",\"471.5\",\"465.9\",\"504.0\",\"610.8\",\"597.5\",\"460.6\",\"439.6\",\"448.6\",\"340.2\",\"329.2\",\"342.5\",\"314.2\",\"475.9\",\"528.3\",\"599.0\",\"570.9\",\"411.9\",\"360.5\",\"403.3\",\"542.1\",\"488.3\",\"471.8\",\"421.9\",\"446.7\",\"392.8\",\"462.1\",\"548.2\",\"467.8\",\"315.8\",\"381.6\",\"452.6\",\"493.4\",\"347.0\",\"322.0\",\"321.4\",\"452.2\",\"478.5\",\"583.5\",\"607.0\",\"383.8\",\"337.2\",\"465.9\",\"498.3\",\"457.7\",\"493.7\",\"486.4\",\"388.1\",\"470.6\",\"492.7\",\"488.6\",\"461.8\",\"608.9\",\"341.3\",\"331.0\",\"489.4\",\"474.6\",\"485.9\",\"499.1\",\"594.5\",\"341.3\",\"488.1\",\"331.0\",\"457.8\",\"490.0\",\"357.9\",\"316.5\",\"424.3\",\"547.8\",\"467.6\",\"402.8\",\"313.4\",\"449.8\",\"459.4\",\"529.0\",\"474.2\",\"560.9\",\"419.9\",\"318.5\",\"302.2\",\"541.4\",\"530.2\",\"387.9\",\"390.9\",\"328.5\",\"469.7\",\"451.8\",\"505.5\",\"480.9\",\"344.7\",\"468.8\",\"507.7\",\"532.8\",\"487.6\",\"566.8\",\"364.8\",\"447.7\",\"358.8\",\"459.9\",\"482.9\",\"485.7\",\"644.5\",\"614.0\",\"453.6\",\"422.2\",\"403.0\",\"376.8\",\"325.8\",\"380.8\",\"431.3\",\"367.8\",\"424.2\",\"523.8\",\"541.3\",\"493.1\",\"484.5\",\"325.0\",\"479.1\",\"538.9\",\"504.9\",\"527.9\",\"648.3\",\"466.0\",\"452.3\",\"300.6\",\"469.2\",\"456.5\",\"518.9\",\"386.2\",\"391.3\",\"348.8\",\"495.4\",\"453.9\",\"342.3\",\"409.6\",\"463.8\",\"534.7\",\"536.1\",\"483.7\",\"594.9\",\"440.1\",\"395.7\",\"441.2\",\"506.9\",\"494.8\",\"595.1\",\"646.2\",\"638.2\",\"436.7\",\"443.7\",\"454.1\",\"391.4\",\"384.5\",\"400.0\",\"474.6\",\"384.8\",\"514.2\",\"486.0\",\"535.0\",\"394.5\",\"443.6\",\"401.1\",\"477.9\",\"503.2\",\"468.7\",\"349.3\",\"318.3\",\"503.1\",\"507.2\",\"564.0\",\"377.7\",\"351.0\",\"396.7\",\"515.2\",\"521.6\",\"555.5\",\"315.0\",\"302.0\",\"459.2\",\"533.6\",\"524.2\",\"511.7\",\"372.6\",\"334.4\",\"406.2\",\"522.6\",\"495.5\",\"473.5\",\"564.7\",\"437.7\",\"343.4\",\"470.8\",\"478.2\",\"484.6\",\"482.2\",\"583.0\",\"345.7\",\"493.0\",\"477.6\",\"495.9\",\"459.8\",\"373.1\",\"375.8\",\"327.2\",\"526.4\",\"483.5\",\"484.7\",\"368.1\",\"471.7\",\"466.9\",\"468.4\",\"506.6\",\"544.8\",\"439.6\",\"486.0\",\"478.3\",\"548.0\",\"462.0\",\"568.2\",\"611.3\",\"349.6\",\"408.0\",\"309.2\",\"481.4\",\"528.8\",\"493.0\",\"604.1\",\"474.3\",\"389.3\",\"374.0\",\"522.2\",\"522.3\",\"481.4\",\"631.8\",\"363.5\",\"427.5\",\"315.6\",\"479.5\",\"511.2\",\"387.7\",\"482.9\",\"326.3\",\"512.2\",\"509.3\",\"330.9\",\"356.3\",\"453.3\",\"503.7\",\"506.8\",\"494.6\",\"550.0\",\"324.0\",\"385.3\",\"432.7\",\"517.4\",\"510.8\",\"413.7\",\"366.2\",\"430.6\",\"536.8\",\"457.8\",\"565.9\",\"607.1\",\"479.0\",\"407.1\",\"402.2\",\"543.3\",\"467.5\",\"562.2\",\"628.9\",\"423.5\",\"432.5\",\"444.1\",\"542.0\",\"501.7\",\"493.1\",\"556.8\",\"469.1\",\"408.3\",\"469.6\",\"508.3\",\"457.5\",\"498.3\",\"416.0\",\"430.7\",\"314.9\",\"486.7\",\"527.3\",\"468.6\",\"592.4\",\"575.7\",\"359.9\",\"455.4\",\"349.0\",\"494.0\",\"544.7\",\"496.0\",\"402.1\",\"381.4\",\"473.7\",\"530.2\",\"485.4\",\"633.0\",\"391.4\",\"393.3\",\"475.4\",\"480.7\",\"524.9\",\"520.9\",\"564.9\",\"365.5\",\"304.0\",\"369.1\",\"455.4\",\"496.7\",\"514.9\",\"300.6\",\"397.4\",\"331.2\",\"502.6\",\"501.5\",\"516.8\",\"397.6\",\"356.5\",\"411.4\",\"467.6\",\"488.5\",\"458.5\",\"596.3\",\"492.3\",\"361.8\",\"480.8\",\"486.6\",\"548.1\",\"434.8\",\"440.6\",\"395.7\",\"503.9\",\"467.2\",\"561.3\",\"604.5\",\"348.2\",\"338.8\",\"389.9\",\"535.1\",\"529.8\",\"487.6\",\"304.3\",\"392.5\",\"378.2\",\"493.6\",\"502.0\",\"516.2\",\"478.6\",\"383.3\",\"493.2\",\"509.9\",\"485.8\",\"473.9\",\"460.6\",\"489.4\",\"303.9\",\"474.4\",\"539.2\",\"472.3\",\"477.5\",\"452.4\",\"351.9\",\"539.4\",\"530.3\",\"476.3\",\"324.1\",\"340.6\",\"451.4\",\"518.6\",\"536.4\",\"353.6\",\"348.4\",\"427.9\",\"515.0\",\"452.9\",\"498.9\",\"358.8\",\"477.9\",\"459.8\",\"512.9\",\"482.5\",\"581.2\",\"363.6\",\"406.8\",\"399.4\",\"515.1\",\"473.9\",\"522.8\",\"590.6\",\"422.9\",\"351.8\",\"479.5\",\"513.9\",\"480.9\",\"439.4\",\"354.1\",\"339.9\",\"488.0\",\"509.8\",\"531.9\",\"360.8\",\"461.3\",\"305.3\",\"524.0\",\"540.7\",\"595.2\",\"627.5\",\"441.5\",\"401.2\",\"467.7\",\"495.4\",\"477.2\",\"473.2\",\"576.2\",\"327.9\",\"481.9\",\"449.8\",\"507.4\",\"533.6\",\"591.1\",\"594.2\",\"411.7\",\"333.2\",\"319.2\",\"511.9\",\"515.0\",\"525.3\",\"609.7\",\"336.1\",\"422.0\",\"304.6\",\"467.4\",\"518.2\",\"592.5\",\"478.3\",\"493.5\",\"476.1\",\"501.0\",\"528.6\",\"596.5\",\"484.2\",\"338.9\",\"418.9\",\"500.2\",\"485.6\",\"352.0\",\"336.2\",\"322.0\",\"527.2\",\"546.7\",\"482.0\",\"308.0\",\"448.3\",\"401.1\",\"523.8\",\"494.7\",\"496.2\",\"350.2\",\"491.5\",\"417.7\",\"525.5\",\"488.0\",\"464.0\",\"323.6\",\"499.1\",\"470.3\",\"463.2\",\"514.7\",\"475.9\",\"619.4\",\"381.0\",\"449.3\",\"408.4\",\"461.5\",\"537.4\",\"447.1\",\"418.5\",\"378.0\",\"547.5\",\"506.8\",\"430.3\",\"341.8\",\"333.5\",\"526.1\",\"510.1\",\"563.2\",\"562.2\",\"372.9\",\"376.1\",\"460.6\",\"531.0\",\"514.2\",\"386.3\",\"359.5\",\"421.1\",\"532.0\",\"508.4\",\"324.0\",\"440.3\",\"427.8\",\"469.8\",\"490.5\",\"415.7\",\"489.5\",\"444.6\",\"509.4\",\"472.8\",\"490.3\",\"481.1\",\"318.2\",\"473.0\",\"509.0\",\"502.3\",\"371.2\",\"378.1\",\"475.1\",\"513.0\",\"499.0\",\"495.7\",\"494.2\",\"349.9\",\"380.6\",\"501.4\",\"531.3\",\"449.9\",\"494.8\",\"440.4\",\"536.6\",\"453.2\",\"578.0\",\"633.2\",\"374.9\",\"323.6\",\"391.8\",\"486.7\",\"475.0\",\"465.0\",\"425.0\",\"419.8\",\"420.2\",\"500.6\",\"481.9\",\"457.3\",\"494.4\",\"496.1\",\"348.9\",\"535.8\",\"470.5\",\"462.6\",\"537.6\",\"565.2\",\"597.4\",\"556.4\",\"342.2\",\"451.3\",\"360.1\",\"526.7\",\"452.8\",\"562.2\",\"535.1\",\"627.3\",\"643.3\",\"644.7\",\"407.1\",\"354.0\",\"385.3\",\"461.8\",\"453.6\",\"302.6\",\"394.1\",\"481.0\",\"530.9\",\"496.5\",\"515.8\",\"372.5\",\"488.8\",\"439.2\",\"531.1\",\"485.3\",\"390.0\",\"318.2\",\"388.8\",\"462.2\",\"535.9\",\"492.2\",\"611.3\",\"449.8\",\"341.7\",\"467.5\",\"457.0\",\"491.4\",\"486.9\",\"586.2\",\"553.1\",\"414.1\",\"416.6\",\"499.2\",\"374.2\",\"343.7\",\"464.8\",\"375.5\",\"392.2\",\"508.2\",\"473.1\",\"558.9\",\"422.9\",\"332.8\",\"318.5\",\"532.4\",\"494.3\",\"431.7\",\"442.0\",\"449.4\",\"484.1\",\"540.4\",\"306.8\",\"321.7\",\"447.0\",\"513.0\",\"506.0\",\"536.0\",\"615.5\",\"364.9\",\"496.5\",\"410.5\",\"466.9\",\"459.3\",\"521.4\",\"449.3\",\"464.3\",\"323.8\",\"540.5\",\"536.7\",\"511.3\",\"490.4\",\"388.0\",\"446.5\",\"475.3\",\"502.8\",\"384.2\",\"325.8\",\"485.9\",\"540.1\",\"531.2\",\"472.2\",\"475.1\",\"396.3\",\"469.1\",\"542.1\",\"466.4\",\"617.0\",\"312.4\",\"423.6\",\"344.4\",\"528.9\",\"470.5\",\"355.5\",\"353.9\",\"433.9\",\"456.3\",\"477.9\",\"450.7\",\"431.1\",\"486.5\",\"321.7\",\"500.0\",\"461.4\",\"478.9\",\"407.5\",\"302.1\",\"464.2\",\"482.7\",\"467.1\",\"522.5\",\"361.9\",\"340.6\",\"333.0\",\"489.1\",\"452.4\",\"546.7\",\"605.0\",\"382.5\",\"352.0\",\"335.3\",\"522.7\",\"531.9\",\"324.0\",\"373.7\",\"315.7\",\"471.6\",\"462.8\",\"480.3\",\"576.8\",\"323.7\",\"304.5\",\"410.8\",\"542.0\",\"514.4\",\"482.2\",\"462.8\",\"421.8\",\"366.3\",\"495.7\",\"538.0\",\"332.9\",\"390.7\",\"396.8\",\"522.5\",\"494.8\",\"504.0\",\"393.3\",\"372.6\",\"415.5\",\"539.0\",\"471.7\",\"508.6\",\"451.1\",\"472.5\",\"406.4\",\"498.1\",\"525.2\",\"338.2\",\"439.4\",\"445.1\",\"541.1\",\"484.7\",\"352.5\",\"384.4\",\"459.2\",\"540.2\",\"536.1\",\"507.5\",\"636.3\",\"310.1\",\"384.1\",\"407.1\",\"481.0\",\"472.1\",\"515.8\",\"616.0\",\"396.2\",\"346.8\",\"341.4\",\"471.8\",\"486.5\",\"534.6\",\"453.6\",\"340.3\",\"344.6\",\"508.5\",\"498.6\",\"480.8\",\"367.2\",\"427.0\",\"515.1\",\"526.7\",\"502.1\",\"464.3\",\"345.4\",\"425.9\",\"415.9\",\"477.0\",\"499.9\",\"427.3\",\"359.8\",\"427.4\",\"514.0\",\"533.1\",\"389.3\",\"417.6\",\"483.8\",\"467.3\",\"533.0\",\"598.9\",\"635.4\",\"474.3\",\"498.6\",\"300.5\",\"531.5\",\"479.2\",\"507.3\",\"368.8\",\"415.6\",\"383.6\",\"454.4\",\"453.3\",\"460.5\",\"382.8\",\"387.1\",\"353.6\",\"518.8\",\"488.3\",\"548.9\",\"563.2\",\"556.4\",\"640.6\",\"648.6\",\"423.3\",\"393.9\",\"360.2\",\"395.8\",\"454.2\",\"485.8\",\"408.0\",\"427.9\",\"327.2\",\"485.1\",\"520.7\",\"474.1\",\"488.2\",\"345.2\",\"506.4\",\"454.0\",\"414.5\",\"316.2\",\"485.6\",\"487.4\",\"475.6\",\"558.6\",\"344.2\",\"348.8\",\"490.4\",\"494.1\",\"462.6\",\"480.8\",\"362.4\",\"492.7\",\"458.4\",\"492.0\",\"543.2\",\"347.2\",\"460.3\",\"390.5\",\"506.3\",\"528.2\",\"344.4\",\"495.3\",\"492.6\",\"544.6\",\"486.2\",\"514.9\",\"613.9\",\"304.9\",\"387.9\",\"352.0\",\"457.6\",\"542.6\",\"491.8\",\"413.1\",\"427.6\",\"451.9\",\"485.8\",\"454.2\",\"642.7\",\"561.4\",\"646.1\",\"435.3\",\"438.4\",\"445.6\",\"433.8\",\"474.9\",\"429.2\",\"518.5\",\"497.7\",\"560.7\",\"618.5\",\"399.6\",\"385.6\",\"475.2\",\"534.8\",\"539.1\",\"464.5\",\"551.5\",\"420.1\",\"328.4\",\"320.2\",\"492.4\",\"484.7\",\"493.3\",\"629.3\",\"374.0\",\"419.9\",\"321.8\",\"467.8\",\"502.6\",\"416.2\",\"498.0\",\"395.9\",\"517.9\",\"530.3\",\"399.9\",\"421.4\",\"353.4\",\"469.8\",\"547.2\",\"466.8\",\"427.2\",\"302.1\",\"414.9\",\"453.7\",\"528.8\",\"492.9\",\"644.4\",\"560.6\",\"482.2\",\"450.1\",\"409.0\",\"306.4\",\"399.3\",\"382.3\",\"474.7\",\"390.1\",\"464.6\",\"509.2\",\"519.7\",\"499.2\",\"424.6\",\"326.1\",\"415.4\",\"482.6\",\"549.4\",\"471.7\",\"557.7\",\"478.0\",\"375.9\",\"466.0\",\"494.5\",\"464.3\",\"524.3\",\"634.0\",\"482.5\",\"402.6\",\"367.6\",\"540.0\",\"480.1\",\"464.9\",\"355.8\",\"487.9\",\"488.7\",\"524.0\",\"482.1\",\"457.9\",\"479.4\",\"415.7\",\"500.2\",\"486.0\",\"531.6\",\"356.5\",\"442.7\",\"302.3\",\"547.1\",\"472.4\",\"516.8\",\"493.4\",\"369.6\",\"462.6\",\"489.0\",\"503.4\",\"502.4\",\"385.6\",\"316.4\",\"365.1\",\"483.4\",\"484.8\",\"499.3\",\"394.6\",\"492.7\",\"481.3\",\"479.6\",\"512.4\",\"438.3\",\"497.3\",\"399.6\",\"525.4\",\"521.6\",\"466.4\",\"406.2\",\"481.7\",\"394.9\",\"451.7\",\"490.5\",\"519.1\",\"393.6\",\"423.7\",\"453.4\",\"531.2\",\"484.9\",\"563.0\",\"640.3\",\"385.8\",\"463.2\",\"314.5\",\"515.5\",\"455.7\",\"462.4\",\"398.6\",\"478.3\",\"332.2\",\"529.5\",\"487.0\",\"552.3\",\"642.2\",\"596.8\",\"603.1\",\"430.0\",\"465.2\",\"411.7\",\"308.7\",\"445.0\",\"370.3\",\"402.6\",\"451.2\",\"495.5\",\"529.7\",\"568.5\",\"645.7\",\"574.7\",\"469.2\",\"414.2\",\"482.8\",\"356.7\",\"355.3\",\"345.6\",\"370.5\",\"370.9\",\"454.8\",\"489.8\",\"485.2\",\"561.6\",\"497.1\",\"330.5\",\"420.0\",\"518.0\",\"463.1\",\"455.2\",\"642.9\",\"566.6\",\"601.8\",\"474.0\",\"498.9\",\"387.9\",\"334.6\",\"451.3\",\"508.6\",\"531.2\",\"637.7\",\"325.1\",\"494.2\",\"480.3\",\"514.5\",\"477.1\",\"507.4\",\"377.2\",\"424.8\",\"303.1\",\"458.3\",\"470.7\",\"550.3\",\"595.3\",\"408.5\",\"313.4\",\"316.4\",\"454.8\",\"526.7\",\"458.0\",\"422.4\",\"370.9\",\"477.0\",\"511.3\",\"502.3\",\"464.5\",\"599.8\",\"617.4\",\"590.7\",\"474.2\",\"475.9\",\"384.5\",\"500.5\",\"521.5\",\"485.5\",\"565.5\",\"611.7\",\"401.1\",\"478.3\",\"490.1\",\"304.2\",\"386.9\",\"386.0\",\"527.3\",\"450.3\",\"547.3\",\"634.5\",\"553.3\",\"439.1\",\"409.1\",\"454.1\",\"442.2\",\"322.6\",\"419.9\",\"364.6\",\"497.0\",\"450.5\",\"516.9\",\"492.4\",\"609.1\",\"406.3\",\"317.5\",\"361.2\",\"453.4\",\"458.9\",\"472.4\",\"478.9\",\"362.1\",\"481.0\",\"487.8\",\"570.9\",\"353.5\",\"370.0\",\"429.2\",\"486.1\",\"512.8\",\"458.0\",\"313.0\",\"416.8\",\"316.7\",\"490.9\",\"502.1\",\"561.4\",\"373.7\",\"458.4\",\"384.5\",\"527.9\",\"485.4\",\"486.3\",\"558.7\",\"415.8\",\"493.1\",\"441.2\",\"458.8\",\"503.1\",\"455.3\",\"360.7\",\"310.4\",\"330.9\",\"476.4\",\"462.0\",\"586.2\",\"348.1\",\"319.6\",\"349.8\",\"459.6\",\"541.6\",\"497.7\",\"415.1\",\"382.0\",\"477.3\",\"531.1\",\"450.9\",\"484.8\",\"567.0\",\"405.4\",\"415.0\",\"374.4\",\"492.9\",\"460.7\",\"354.7\",\"307.9\",\"308.6\",\"541.0\",\"464.4\",\"385.4\",\"442.9\",\"315.8\",\"509.2\",\"470.6\",\"343.4\",\"396.1\",\"357.0\",\"474.2\",\"484.9\",\"510.9\",\"469.1\",\"435.2\",\"346.3\",\"483.2\",\"450.7\",\"537.3\",\"437.4\",\"476.6\",\"405.3\",\"530.9\",\"511.4\",\"494.3\",\"484.8\",\"409.7\",\"394.8\",\"497.5\",\"521.0\",\"474.2\",\"494.5\",\"461.0\",\"517.8\",\"451.0\",\"480.1\",\"396.7\",\"400.9\",\"485.1\",\"539.9\",\"547.7\",\"627.5\",\"367.3\",\"423.4\",\"340.1\",\"453.9\",\"473.4\",\"593.8\",\"643.6\",\"408.6\",\"350.6\",\"366.6\",\"543.9\",\"455.0\",\"499.6\",\"592.9\",\"360.3\",\"318.3\",\"486.9\",\"458.6\",\"485.1\",\"339.2\",\"342.8\",\"462.8\",\"498.1\",\"489.3\",\"579.0\",\"590.4\",\"397.4\",\"431.9\",\"350.5\",\"542.3\",\"468.6\",\"457.4\",\"633.3\",\"588.4\",\"331.9\",\"397.9\",\"309.8\",\"518.8\",\"453.7\",\"453.5\",\"405.9\",\"437.4\",\"446.6\",\"513.1\",\"498.7\",\"465.7\",\"439.5\",\"453.4\",\"473.3\",\"513.5\",\"579.6\",\"486.3\",\"369.5\",\"400.0\",\"514.5\",\"491.9\",\"493.4\",\"438.2\",\"481.7\",\"450.1\",\"460.1\",\"506.6\",\"464.1\",\"640.0\",\"332.2\",\"320.1\",\"391.8\",\"533.1\",\"481.9\",\"374.6\",\"412.2\",\"360.6\",\"546.5\",\"543.6\",\"541.8\",\"463.9\",\"494.1\",\"471.5\",\"533.0\",\"490.4\",\"432.4\",\"341.0\",\"476.8\",\"502.2\",\"484.1\",\"541.4\",\"564.3\",\"432.0\",\"398.5\",\"386.9\",\"532.8\",\"454.2\",\"402.7\",\"405.5\",\"350.9\",\"450.9\",\"506.7\",\"499.4\",\"640.6\",\"319.5\",\"410.4\",\"391.0\",\"505.5\",\"489.7\",\"546.6\",\"642.4\",\"318.6\",\"371.2\",\"376.2\",\"526.9\",\"467.1\",\"560.8\",\"443.7\",\"432.8\",\"353.2\",\"507.5\",\"543.6\",\"599.8\",\"572.6\",\"456.3\",\"468.4\",\"305.4\",\"526.6\",\"485.7\",\"489.7\",\"553.9\",\"324.5\",\"410.4\",\"389.1\",\"529.7\",\"534.4\",\"595.1\",\"591.9\",\"370.2\",\"393.9\",\"314.0\",\"541.2\",\"521.7\",\"550.0\",\"560.5\",\"408.1\",\"464.4\",\"407.2\",\"547.9\",\"544.8\",\"558.4\",\"405.9\",\"380.6\",\"485.6\",\"544.2\",\"532.3\",\"363.9\",\"392.5\",\"422.4\",\"496.7\",\"495.5\",\"477.9\",\"437.9\",\"326.3\",\"496.7\",\"468.0\",\"516.2\",\"580.7\",\"458.1\",\"420.6\",\"347.2\",\"513.8\",\"514.1\",\"479.7\",\"631.2\",\"370.6\",\"342.7\",\"461.4\",\"500.4\",\"542.5\",\"576.4\",\"614.1\",\"380.4\",\"423.7\",\"315.8\",\"453.6\",\"495.2\",\"426.2\",\"361.5\",\"351.4\",\"481.9\",\"452.9\",\"557.8\",\"644.2\",\"479.0\",\"422.8\",\"376.6\",\"533.2\",\"496.5\",\"486.8\",\"446.2\",\"471.1\",\"455.8\",\"486.7\",\"457.8\",\"430.6\",\"464.5\",\"369.6\",\"450.8\",\"528.9\",\"359.3\",\"355.2\",\"476.3\",\"492.5\",\"527.8\",\"517.0\",\"552.6\",\"393.1\",\"402.9\",\"497.5\",\"530.1\",\"451.9\",\"484.9\",\"468.1\",\"486.1\",\"472.4\",\"493.9\",\"536.0\",\"582.0\",\"578.8\",\"330.4\",\"411.3\",\"318.4\",\"476.3\",\"454.8\",\"318.3\",\"354.0\",\"341.3\",\"548.4\",\"534.6\",\"402.6\",\"495.5\",\"431.3\",\"515.3\",\"464.2\",\"527.3\",\"397.9\",\"491.9\",\"493.3\",\"483.9\",\"533.8\",\"473.6\",\"449.4\",\"336.0\",\"366.9\",\"509.4\",\"470.5\",\"551.1\",\"628.9\",\"363.5\",\"362.1\",\"395.6\",\"517.5\",\"495.6\",\"497.4\",\"589.5\",\"436.2\",\"461.1\",\"438.1\",\"496.9\",\"450.5\",\"584.5\",\"563.0\",\"573.2\",\"458.1\",\"455.4\",\"438.4\",\"359.2\",\"348.9\",\"482.3\",\"420.8\",\"343.2\",\"510.2\",\"531.3\",\"497.5\",\"498.3\",\"486.8\",\"495.2\",\"545.7\",\"519.4\",\"589.1\",\"552.8\",\"449.1\",\"331.6\",\"366.4\",\"533.5\",\"531.0\",\"450.6\",\"427.9\",\"344.8\",\"481.0\",\"495.1\",\"485.5\",\"517.7\",\"612.6\",\"484.0\",\"381.3\",\"374.1\",\"530.1\",\"495.7\",\"569.1\",\"448.8\",\"483.2\",\"427.1\",\"500.2\",\"539.5\",\"504.1\",\"471.3\",\"386.5\",\"485.2\",\"504.4\",\"452.7\",\"463.9\",\"366.3\",\"497.2\",\"439.3\",\"451.1\",\"477.2\",\"592.9\",\"319.0\",\"497.3\",\"490.8\",\"486.5\",\"480.2\",\"485.3\",\"643.2\",\"629.3\",\"557.3\",\"475.9\",\"446.9\",\"449.3\",\"497.2\",\"505.6\",\"533.2\",\"480.5\",\"572.5\",\"490.8\",\"348.3\",\"432.0\",\"526.7\",\"490.5\",\"587.8\",\"355.5\",\"336.5\",\"487.4\",\"496.5\",\"529.6\",\"514.3\",\"496.2\",\"446.9\",\"307.7\",\"538.0\",\"517.4\",\"589.4\",\"300.3\",\"395.7\",\"384.1\",\"476.5\",\"473.9\",\"471.6\",\"398.6\",\"366.9\",\"400.1\",\"536.6\",\"531.0\",\"539.4\",\"479.9\",\"409.4\",\"385.6\",\"467.3\",\"456.5\",\"489.5\",\"316.0\",\"478.3\",\"488.9\",\"515.0\",\"456.1\",\"424.5\",\"494.9\",\"540.4\",\"459.7\",\"557.7\",\"576.4\",\"368.6\",\"489.1\",\"498.8\",\"484.8\",\"517.9\",\"553.6\",\"581.3\",\"406.5\",\"387.0\",\"307.5\",\"482.5\",\"548.7\",\"471.3\",\"568.6\",\"367.3\",\"359.5\",\"401.7\",\"511.7\",\"543.7\",\"464.8\",\"337.4\",\"336.1\",\"374.7\",\"456.6\",\"536.0\",\"533.8\",\"323.3\",\"381.7\",\"319.2\",\"508.6\",\"485.6\",\"450.2\",\"626.4\",\"444.8\",\"317.0\",\"396.4\",\"495.8\",\"547.0\",\"357.8\",\"349.1\",\"446.7\",\"522.3\",\"534.0\",\"453.8\",\"306.4\",\"305.2\",\"412.1\",\"475.0\",\"527.4\",\"470.0\",\"317.5\",\"310.7\",\"538.8\",\"459.7\",\"532.4\",\"645.4\",\"311.8\",\"480.7\",\"423.3\",\"453.1\",\"481.8\",\"540.5\",\"579.6\",\"316.3\",\"479.9\",\"350.2\",\"461.4\",\"517.5\",\"520.7\",\"444.9\",\"371.6\",\"472.0\",\"488.9\",\"510.1\",\"538.9\",\"605.6\",\"406.3\",\"366.4\",\"470.5\",\"456.9\",\"549.5\",\"454.9\",\"602.2\",\"311.8\",\"399.9\",\"312.9\",\"487.2\",\"534.7\",\"539.0\",\"632.8\",\"487.6\",\"383.4\",\"397.1\",\"503.1\",\"479.9\",\"371.4\",\"481.6\",\"326.3\",\"481.7\",\"486.3\",\"597.7\",\"642.3\",\"640.9\",\"613.7\",\"458.8\",\"420.6\",\"401.4\",\"354.2\",\"402.5\",\"432.2\",\"450.9\",\"489.4\",\"474.6\",\"466.1\",\"553.1\",\"362.2\",\"450.6\",\"443.9\",\"527.5\",\"540.2\",\"549.9\",\"423.5\",\"301.3\",\"383.9\",\"451.4\",\"466.1\",\"463.8\",\"391.2\",\"420.4\",\"411.6\",\"521.9\",\"525.3\",\"496.2\",\"568.5\",\"474.5\",\"499.4\",\"414.6\",\"536.5\",\"510.6\",\"491.9\",\"618.9\",\"617.0\",\"472.0\",\"463.2\",\"421.3\",\"436.3\",\"387.7\",\"360.7\",\"372.1\",\"448.5\",\"391.8\",\"541.4\",\"450.1\",\"580.1\",\"609.5\",\"364.2\",\"379.4\",\"436.4\",\"488.5\",\"454.5\",\"334.0\",\"491.5\",\"421.7\",\"456.6\",\"460.0\",\"510.1\",\"614.4\",\"460.8\",\"362.1\",\"300.5\",\"513.2\",\"474.7\",\"534.9\",\"366.4\",\"392.1\",\"329.9\",\"471.9\",\"530.0\",\"598.3\",\"599.6\",\"331.7\",\"459.6\",\"469.5\",\"546.9\",\"450.1\",\"527.2\",\"574.9\",\"380.5\",\"452.9\",\"305.7\",\"496.0\",\"461.8\",\"542.8\",\"561.6\",\"310.1\",\"301.8\",\"418.0\",\"542.9\",\"460.6\",\"564.7\",\"350.8\",\"401.3\",\"398.5\",\"532.4\",\"504.5\",\"323.5\",\"395.3\",\"427.0\",\"502.6\",\"543.2\",\"325.2\",\"362.5\",\"450.9\",\"531.9\",\"478.1\",\"461.7\",\"596.9\",\"395.4\",\"376.7\",\"317.6\",\"461.4\",\"483.1\",\"326.4\",\"453.0\",\"483.2\",\"478.7\",\"549.4\",\"348.3\",\"330.4\",\"313.7\",\"472.3\",\"454.6\",\"576.5\",\"486.0\",\"332.3\",\"457.0\",\"546.5\",\"512.8\",\"404.5\",\"497.2\",\"434.5\",\"539.1\",\"534.0\",\"467.4\",\"454.4\",\"405.1\",\"545.7\",\"512.0\",\"505.6\",\"397.3\",\"309.0\",\"352.6\",\"485.9\",\"537.1\",\"511.6\",\"378.9\",\"332.4\",\"406.5\",\"464.2\",\"451.7\",\"405.3\",\"314.0\",\"470.8\",\"545.4\",\"548.6\",\"509.8\",\"646.4\",\"329.9\",\"370.0\",\"414.2\",\"492.0\",\"515.4\",\"494.9\",\"592.1\",\"418.2\",\"361.0\",\"394.3\",\"521.3\",\"459.5\",\"598.7\",\"605.2\",\"456.7\",\"375.3\",\"441.9\",\"514.7\",\"527.0\",\"467.1\",\"353.7\",\"317.7\",\"471.7\",\"466.5\",\"452.5\",\"302.5\",\"350.4\",\"456.2\",\"546.2\",\"483.0\",\"358.1\",\"353.7\",\"490.9\",\"499.1\",\"532.7\",\"468.3\",\"454.3\",\"430.2\",\"540.3\",\"482.9\",\"559.3\",\"583.4\",\"309.3\",\"352.6\",\"389.3\",\"508.6\",\"528.4\",\"556.1\",\"637.3\",\"375.0\",\"318.9\",\"315.4\",\"520.7\",\"477.7\",\"392.7\",\"324.3\",\"464.0\",\"483.4\",\"464.9\",\"458.9\",\"410.7\",\"468.5\",\"546.8\",\"495.5\",\"498.6\",\"499.8\",\"312.8\",\"390.6\",\"538.3\",\"467.3\",\"518.0\",\"625.3\",\"324.5\",\"419.5\",\"443.3\",\"476.1\",\"533.9\",\"485.7\",\"335.7\",\"364.9\",\"460.4\",\"494.7\",\"488.7\",\"620.1\",\"403.7\",\"341.3\",\"429.5\",\"461.8\",\"472.7\",\"359.1\",\"343.8\",\"336.7\",\"508.8\",\"460.2\",\"306.4\",\"430.3\",\"322.4\",\"460.1\",\"475.9\",\"594.1\",\"377.7\",\"357.5\",\"357.6\",\"492.6\",\"490.2\",\"480.2\",\"364.1\",\"343.8\",\"406.8\",\"489.4\",\"509.7\",\"557.8\",\"577.2\",\"476.2\",\"306.5\",\"391.6\",\"465.6\",\"534.8\",\"544.7\",\"375.6\",\"452.4\",\"414.1\",\"494.2\",\"500.0\",\"460.5\",\"570.0\",\"622.5\",\"416.7\",\"475.1\",\"495.2\",\"426.0\",\"438.3\",\"415.3\",\"351.9\",\"460.3\",\"509.6\",\"465.9\",\"482.0\",\"337.3\",\"428.8\",\"463.6\",\"475.4\",\"501.0\",\"590.1\",\"474.4\",\"336.7\",\"307.9\",\"466.5\",\"460.8\",\"580.4\",\"569.0\",\"349.4\",\"446.3\",\"337.5\",\"539.4\",\"466.7\",\"351.2\",\"425.1\",\"475.5\",\"458.8\",\"523.4\",\"391.9\",\"441.1\",\"323.3\",\"471.8\",\"548.2\",\"598.6\",\"585.0\",\"494.1\",\"389.7\",\"403.2\",\"458.4\",\"520.1\",\"535.6\",\"642.8\",\"470.3\",\"390.3\",\"463.2\",\"492.6\",\"491.9\",\"522.1\",\"367.4\",\"456.4\",\"319.5\",\"455.5\",\"546.5\",\"545.6\",\"589.0\",\"496.0\",\"363.8\",\"342.2\",\"465.0\",\"464.6\",\"529.1\",\"555.8\",\"304.1\",\"483.9\",\"308.6\",\"481.3\",\"493.6\",\"553.7\",\"364.5\",\"324.6\",\"354.7\",\"451.0\",\"546.6\",\"481.4\",\"614.7\",\"643.3\",\"617.9\",\"437.9\",\"436.9\",\"410.3\",\"347.8\",\"363.9\",\"475.8\",\"478.8\",\"382.5\",\"480.6\",\"510.3\",\"463.3\",\"551.3\",\"460.8\",\"433.2\",\"427.7\",\"472.3\",\"451.1\",\"459.4\",\"584.6\",\"494.9\",\"481.1\",\"388.4\",\"547.2\",\"462.3\",\"439.2\",\"379.6\",\"434.8\",\"533.8\",\"479.2\",\"328.9\",\"432.0\",\"491.2\",\"518.8\",\"484.0\",\"453.8\",\"390.2\",\"498.2\",\"508.7\",\"502.5\",\"438.4\",\"394.1\",\"474.7\",\"537.2\",\"488.4\",\"584.4\",\"375.6\",\"392.6\",\"336.3\",\"465.1\",\"515.7\",\"481.9\",\"636.0\",\"578.5\",\"479.9\",\"446.8\",\"401.5\",\"426.6\",\"434.2\",\"310.4\",\"414.7\",\"386.8\",\"474.5\",\"525.0\",\"459.0\",\"518.1\",\"603.3\",\"466.5\",\"426.6\",\"367.2\",\"490.1\",\"500.8\",\"454.8\",\"460.8\",\"410.3\",\"519.2\",\"487.2\",\"316.6\",\"358.0\",\"396.3\",\"525.4\",\"497.8\",\"498.6\",\"464.0\",\"491.4\",\"369.2\",\"472.0\",\"506.6\",\"580.3\",\"435.0\",\"301.9\",\"470.5\",\"507.9\",\"525.1\",\"476.6\",\"641.2\",\"325.7\",\"401.7\",\"467.2\",\"471.6\",\"480.4\",\"564.8\",\"477.4\",\"487.7\",\"447.5\",\"514.0\",\"474.1\",\"450.3\",\"476.4\",\"360.6\",\"500.5\",\"490.3\",\"573.6\",\"564.4\",\"339.9\",\"488.8\",\"352.4\",\"499.6\",\"538.7\",\"329.1\",\"425.4\",\"409.8\",\"488.0\",\"518.1\",\"461.4\",\"410.0\",\"413.9\",\"471.3\",\"465.8\",\"494.4\",\"392.8\",\"395.7\",\"427.9\",\"469.7\",\"537.8\",\"557.0\",\"563.5\",\"344.9\",\"304.0\",\"467.0\",\"525.7\",\"548.1\",\"488.8\",\"335.0\",\"316.4\",\"540.8\",\"464.0\",\"504.3\",\"471.1\",\"390.3\",\"372.1\",\"487.8\",\"491.3\",\"584.1\",\"458.6\",\"458.3\",\"423.7\",\"522.2\",\"490.5\",\"326.1\",\"484.8\",\"463.8\",\"514.3\",\"512.0\",\"502.4\",\"598.5\",\"449.9\",\"384.2\",\"345.0\",\"474.9\",\"528.4\",\"521.8\",\"554.3\",\"425.5\",\"475.1\",\"326.4\",\"536.6\",\"534.8\",\"459.5\",\"594.9\",\"567.2\",\"638.9\",\"441.6\",\"498.8\",\"496.2\",\"394.3\",\"314.9\",\"531.7\",\"543.0\",\"551.1\",\"649.8\",\"354.2\",\"306.8\",\"495.8\",\"450.6\",\"549.8\",\"557.2\",\"592.8\",\"560.9\",\"485.0\",\"316.9\",\"432.7\",\"333.1\",\"528.1\",\"513.8\",\"564.2\",\"426.8\",\"499.9\",\"392.5\",\"520.0\",\"467.9\",\"458.9\",\"396.7\",\"359.8\",\"457.5\",\"472.6\",\"507.5\",\"587.6\",\"483.5\",\"388.6\",\"353.7\",\"547.3\",\"546.3\",\"452.9\",\"624.9\",\"332.8\",\"383.4\",\"446.3\",\"505.3\",\"531.9\",\"534.4\",\"638.1\",\"628.6\",\"454.0\",\"461.1\",\"438.9\",\"359.4\",\"465.5\",\"450.8\",\"391.8\",\"543.6\",\"508.9\",\"444.1\",\"478.0\",\"335.1\",\"520.6\",\"462.1\",\"446.7\",\"470.4\",\"420.0\",\"499.8\",\"533.6\",\"585.7\",\"628.1\",\"381.0\",\"486.3\",\"423.8\",\"481.0\",\"520.4\",\"524.3\",\"420.9\",\"304.6\",\"456.1\",\"455.0\",\"480.0\",\"328.9\",\"498.3\",\"482.5\",\"521.1\",\"470.5\",\"532.4\",\"583.4\",\"477.0\",\"498.1\",\"456.6\",\"494.7\",\"524.9\",\"345.6\",\"472.9\",\"404.1\",\"517.7\",\"482.1\",\"320.3\",\"463.5\",\"381.1\",\"504.0\",\"483.1\",\"573.8\",\"325.2\",\"339.0\",\"382.3\",\"523.1\",\"509.8\",\"480.3\",\"559.7\",\"606.9\",\"497.2\",\"483.5\",\"427.0\",\"391.1\",\"414.7\",\"435.5\",\"412.8\",\"341.2\",\"445.4\",\"459.0\",\"453.4\",\"469.4\",\"458.2\",\"447.2\",\"304.9\",\"459.8\",\"519.2\",\"476.3\",\"304.7\",\"482.7\",\"522.1\",\"505.4\",\"572.9\",\"642.4\",\"496.1\",\"404.7\",\"452.7\",\"470.9\",\"463.3\",\"529.9\",\"645.0\",\"328.6\",\"442.0\",\"421.5\",\"542.6\",\"458.3\",\"462.8\",\"456.6\",\"399.1\",\"392.4\",\"549.5\",\"548.7\",\"458.2\",\"600.1\",\"359.8\",\"322.2\",\"342.9\",\"483.2\",\"492.7\",\"551.3\",\"385.5\",\"470.7\",\"446.7\",\"498.1\",\"500.6\",\"457.9\",\"643.5\",\"482.9\",\"321.4\",\"411.0\",\"524.7\",\"537.8\",\"464.0\",\"428.8\",\"405.7\",\"546.5\",\"513.0\",\"526.6\",\"470.2\",\"309.3\",\"322.3\",\"460.5\",\"459.4\",\"479.7\",\"444.8\",\"328.1\",\"544.4\",\"507.6\",\"506.0\",\"560.2\",\"432.1\",\"337.3\",\"370.4\",\"534.9\",\"533.8\",\"586.2\",\"519.4\",\"587.0\",\"417.5\",\"458.8\",\"486.4\",\"505.2\",\"535.2\",\"467.2\",\"641.5\",\"381.8\",\"431.8\",\"466.4\",\"467.2\",\"455.1\",\"385.5\",\"316.3\",\"410.1\",\"504.9\",\"543.7\",\"559.8\",\"477.3\",\"358.0\",\"378.3\",\"484.5\",\"511.8\",\"513.8\",\"415.0\",\"391.8\",\"335.7\",\"487.4\",\"464.2\",\"530.4\",\"508.1\",\"613.4\",\"606.4\",\"443.9\",\"378.5\",\"444.6\",\"472.3\",\"494.1\",\"483.6\",\"403.8\",\"422.7\",\"453.5\",\"523.3\",\"492.2\",\"381.7\",\"407.2\",\"339.1\",\"543.9\",\"544.1\",\"527.7\",\"629.9\",\"374.2\",\"496.3\",\"395.7\",\"479.2\",\"470.5\",\"315.2\",\"351.8\",\"439.8\",\"549.6\",\"525.2\",\"582.5\",\"567.5\",\"572.2\",\"597.6\",\"471.1\",\"401.2\",\"420.5\",\"309.3\",\"435.9\",\"475.6\",\"546.3\",\"469.2\",\"478.8\",\"579.7\",\"391.9\",\"451.0\",\"360.8\",\"537.0\",\"525.5\",\"584.0\",\"469.2\",\"354.2\",\"376.0\",\"541.4\",\"483.6\",\"571.2\",\"456.6\",\"571.4\",\"314.5\",\"399.7\",\"481.4\",\"451.5\",\"492.7\",\"590.7\",\"443.5\",\"343.2\",\"444.2\",\"516.3\",\"544.9\",\"322.1\",\"484.6\",\"421.3\",\"511.9\",\"453.0\",\"459.1\",\"598.0\",\"345.9\",\"317.2\",\"453.5\",\"475.7\",\"491.6\",\"311.0\",\"386.2\",\"417.5\",\"548.7\",\"538.9\",\"470.3\",\"594.5\",\"311.5\",\"331.0\",\"439.2\",\"535.8\",\"506.1\",\"593.9\",\"560.3\",\"350.3\",\"435.0\",\"440.0\",\"541.9\",\"490.1\",\"470.6\",\"586.9\",\"609.8\",\"428.6\",\"448.5\",\"464.6\",\"441.7\",\"332.4\",\"359.4\",\"305.1\",\"490.5\",\"467.8\",\"352.9\",\"394.0\",\"332.4\",\"501.7\",\"542.1\",\"490.2\",\"558.7\",\"424.4\",\"386.2\",\"348.8\",\"450.8\",\"537.0\",\"406.5\",\"481.1\",\"442.6\",\"512.5\",\"454.1\",\"459.2\",\"597.9\",\"471.5\",\"454.4\",\"402.8\",\"506.6\",\"510.9\",\"472.4\",\"338.9\",\"388.8\",\"495.0\",\"487.0\",\"451.1\",\"618.9\",\"451.7\",\"333.0\",\"438.4\",\"468.0\",\"454.6\",\"590.1\",\"630.1\",\"421.9\",\"382.4\",\"420.5\",\"477.4\",\"538.3\",\"453.3\",\"332.4\",\"390.2\",\"547.5\",\"501.3\",\"444.7\",\"415.9\",\"407.0\",\"495.5\",\"516.5\",\"541.3\",\"353.3\",\"409.3\",\"353.3\",\"547.2\",\"454.7\",\"492.2\",\"573.0\",\"448.5\",\"430.6\",\"400.9\",\"463.0\",\"476.4\",\"557.4\",\"561.5\",\"493.5\",\"417.3\",\"419.7\",\"452.9\",\"500.5\",\"487.7\",\"633.5\",\"647.8\",\"592.6\",\"377.5\",\"455.3\",\"378.4\",\"511.0\",\"489.6\",\"456.2\",\"416.3\",\"329.9\",\"469.0\",\"545.0\",\"520.8\",\"640.1\",\"306.9\",\"317.1\",\"323.7\",\"472.5\",\"500.7\",\"415.2\",\"320.4\",\"367.0\",\"468.0\",\"515.6\",\"487.2\",\"614.9\",\"619.0\",\"586.1\",\"415.7\",\"436.6\",\"401.7\",\"482.9\",\"308.0\",\"445.5\",\"503.8\",\"489.9\",\"576.9\",\"314.8\",\"422.7\",\"341.9\",\"462.3\",\"531.0\",\"466.4\",\"591.2\",\"558.7\",\"459.6\",\"448.4\",\"447.0\",\"379.4\",\"445.0\",\"437.5\",\"444.9\",\"384.6\",\"346.9\",\"324.2\",\"504.3\",\"515.2\",\"566.7\",\"584.3\",\"455.1\",\"388.7\",\"349.7\",\"548.5\",\"501.4\",\"456.5\",\"438.6\",\"351.8\",\"507.6\",\"506.9\",\"502.9\",\"634.8\",\"481.3\",\"473.5\",\"497.1\",\"547.2\",\"473.8\",\"565.6\",\"557.8\",\"328.4\",\"487.5\",\"445.5\",\"470.7\",\"466.5\",\"537.3\",\"648.1\",\"593.6\",\"413.9\",\"444.1\",\"421.4\",\"517.7\",\"495.3\",\"458.6\",\"471.2\",\"474.2\",\"500.1\",\"451.1\",\"458.1\",\"333.9\",\"469.1\",\"481.8\",\"499.5\",\"511.4\",\"515.5\",\"379.2\",\"481.3\",\"375.9\",\"467.4\",\"464.9\",\"475.8\",\"648.4\",\"428.7\",\"376.2\",\"413.5\",\"473.0\",\"536.9\",\"504.1\",\"555.3\",\"365.1\",\"495.1\",\"455.3\",\"484.8\",\"461.3\",\"369.1\",\"339.2\",\"340.9\",\"529.6\",\"538.9\",\"546.3\",\"361.0\",\"369.1\",\"400.7\",\"497.2\",\"542.0\",\"452.0\",\"435.3\",\"411.6\",\"490.1\",\"472.9\",\"562.6\",\"584.8\",\"424.1\",\"410.4\",\"389.9\",\"526.4\",\"487.6\",\"486.4\",\"318.4\",\"400.8\",\"387.7\",\"530.0\",\"491.9\",\"479.4\",\"311.7\",\"448.3\",\"441.3\",\"541.6\",\"535.1\",\"475.6\",\"306.0\",\"300.7\",\"459.7\",\"461.9\",\"518.9\",\"481.8\",\"644.2\",\"303.1\",\"437.8\",\"309.3\",\"497.1\",\"467.1\",\"353.2\",\"334.4\",\"384.2\",\"489.2\",\"520.5\",\"418.3\",\"441.6\",\"300.1\",\"516.4\",\"528.0\",\"527.6\",\"613.7\",\"305.7\",\"354.4\",\"325.0\",\"452.8\",\"525.9\",\"482.9\",\"457.9\",\"355.3\",\"540.1\",\"506.2\",\"566.6\",\"333.3\",\"480.4\",\"378.3\",\"463.6\",\"542.0\",\"532.6\",\"318.2\",\"343.8\",\"475.5\",\"539.0\",\"463.7\",\"478.4\",\"580.5\",\"606.1\",\"413.2\",\"379.0\",\"352.9\",\"428.9\",\"532.9\",\"505.4\",\"547.8\",\"346.4\",\"421.5\",\"316.4\",\"511.3\",\"534.0\",\"319.2\",\"391.5\",\"370.3\",\"467.6\",\"483.0\",\"484.9\",\"390.7\",\"371.5\",\"457.4\",\"513.6\",\"554.0\",\"561.2\",\"477.0\",\"466.1\",\"395.1\",\"480.1\",\"498.2\",\"514.7\",\"630.6\",\"444.7\",\"366.2\",\"432.0\",\"476.0\",\"486.1\",\"467.7\",\"597.2\",\"462.6\",\"411.9\",\"409.1\",\"523.5\",\"450.4\",\"497.5\",\"639.6\",\"434.6\",\"396.8\",\"401.5\",\"485.4\",\"538.7\",\"408.4\",\"481.5\",\"365.5\",\"522.8\",\"468.9\",\"562.9\",\"491.4\",\"467.2\",\"431.7\",\"541.8\",\"507.7\",\"426.5\",\"492.6\",\"359.0\",\"511.3\",\"495.6\",\"531.2\",\"581.9\",\"648.3\",\"608.1\",\"463.1\",\"467.8\",\"400.1\",\"494.4\",\"526.1\",\"530.6\",\"483.0\",\"407.1\",\"358.7\",\"511.1\",\"529.9\",\"570.7\",\"621.0\",\"481.9\",\"309.2\",\"421.7\",\"461.4\",\"519.3\",\"521.2\",\"640.3\",\"602.2\",\"411.9\",\"421.6\",\"442.7\",\"422.3\",\"469.6\",\"460.0\",\"475.4\",\"589.4\",\"433.1\",\"421.3\",\"423.9\",\"501.0\",\"537.5\",\"513.1\",\"363.2\",\"370.0\",\"302.4\",\"457.8\",\"509.1\",\"512.3\",\"648.8\",\"375.7\",\"467.1\",\"461.2\",\"513.0\",\"498.0\",\"496.0\",\"323.6\",\"380.6\",\"321.5\",\"525.6\",\"535.4\"]},\"selected\":{\"id\":\"1335\"},\"selection_policy\":{\"id\":\"1334\"}},\"id\":\"1134\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"overlay\":{\"id\":\"1028\"}},\"id\":\"1024\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"1119\",\"type\":\"HelpTool\"},{\"attributes\":{\"data\":{\"x\":[0,2,4,6,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,0,2,4,5,6,7,8,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,0,2,4,0,2,4,6,8,0,2,4,6,8,9,10,11,12,0,2,4,5,6,7,8,0,2,4,5,6,7,8,9,10,0,2,4,5,6,7,8,9,10,0,2,4,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,0,2,4,5,6,7,8,9,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,0,2,4,6,8,9,10,11,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,0,2,4,6,0,2,4,6,8,0,2,4,6,7,8,9,10,0,2,4,0,2,4,5,6,7,8,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,0,2,4,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,5,6,7,0,2,4,6,0,2,4,5,6,7,8,9,10,11,12,13,14,5,7,9,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,8,0,2,4,6,7,8,9,10,11,0,2,4,6,0,2,4,5,6,7,8,9,10,11,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,0,2,4,0,2,4,7,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,0,2,4,5,6,7,8,9,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,0,2,4,5,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,7,8,9,10,0,2,4,6,7,8,9,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,7,8,9,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,5,6,7,8,9,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,5,7,9,11,12,13,14,15,16,17,18,19,20,0,2,4,5,6,7,8,9,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,7,8,9,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,0,2,4,6,0,2,4,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,0,2,4,5,6,7,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,0,2,4,0,2,4,6,7,8,9,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,3,5,7,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,0,2,4,0,2,4,6,8,9,10,11,12,0,2,4,5,6,7,8,9,0,2,4,6,7,8,9,10,11,7,9,11,13,14,15,16,17,18,19,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,9,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,5,7,9,10,11,12,13,0,2,4,6,0,2,5,7,9,10,11,12,13,14,15,16,17,18,19,0,2,4,5,6,7,8,9,10,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,9,10,11,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,0,2,4,6,8,9,10,11,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,0,2,4,6,8,9,10,11,12,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,0,2,4,5,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,0,2,4,5,6,7,8,9,10,11,5,7,9,0,2,4,6,7,8,9,10,0,2,4,6,8,0,2,4,5,6,7,0,2,4,6,8,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,0,2,0,2,4,6,0,2,4,5,6,7,8,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,9,10,11,0,2,4,6,8,0,2,4,0,2,4,5,6,7,8,9,0,2,4,5,6,7,8,7,9,11,12,13,14,15,16,17,0,2,4,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,0,2,4,6,7,8,9,10,0,2,4,6,8,9,10,11,13,14,15,16,17,0,2,4,5,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,0,2,4,6,8,9,10,11,12,13,14,0,2,4,5,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,0,2,4,6,8,9,10,11,12,13,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,0,2,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,0,2,4,5,6,7,0,2,4,5,6,7,8,9,10,11,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,7,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,0,2,4,6,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,5,6,7,8,9,10,11,12,0,2,4,5,6,7,8,9,10,11,12,13,0,3,5,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,0,3,5,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,0,2,4,6,8,6,8,10,12,14,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,0,2,4,0,2,4,0,2,4,5,6,7,8,9,0,2,4,6,8,9,10,11,12,13,0,2,4,0,2,4,5,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,7,8,9,10,0,2,4,5,6,7,8,5,7,0,2,0,2,4,6,7,8,9,10,11,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,5,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,6,8,10,12,14,5,7,9,11,7,9,11,13,14,15,16,17,18,19,20,21,22,23,0,2,4,5,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,7,8,9,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,0,2,4,5,6,7,8,9,0,2,4,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,5,6,7,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,0,2,4,6,8,0,2,5,6,7,8,9,0,2,4,6,8,9,10,11,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,0,2,4,5,6,7,8,9,10,11,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,0,2,4,6,7,8,9,10,11,0,2,4,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14],\"y\":[\"327.4\",\"338.1\",\"343.5\",\"303.1\",\"328.8\",\"326.5\",\"326.5\",\"315.8\",\"327.7\",\"321.8\",\"324.5\",\"302.0\",\"392.5\",\"382.7\",\"403.6\",\"396.3\",\"397.2\",\"385.2\",\"376.0\",\"387.6\",\"536.1\",\"336.0\",\"332.2\",\"327.3\",\"304.2\",\"329.2\",\"327.0\",\"395.8\",\"337.3\",\"332.9\",\"334.2\",\"300.6\",\"324.5\",\"308.5\",\"384.5\",\"329.4\",\"322.3\",\"320.6\",\"310.9\",\"322.6\",\"303.3\",\"388.6\",\"385.7\",\"381.5\",\"393.3\",\"402.6\",\"238.9\",\"221.9\",\"216.2\",\"228.9\",\"235.4\",\"344.4\",\"326.8\",\"332.0\",\"308.4\",\"303.2\",\"387.1\",\"382.1\",\"381.4\",\"398.2\",\"392.4\",\"407.9\",\"374.5\",\"384.4\",\"372.1\",\"530.5\",\"343.1\",\"324.4\",\"335.6\",\"305.2\",\"304.4\",\"324.2\",\"388.3\",\"381.3\",\"393.3\",\"394.0\",\"399.1\",\"408.7\",\"377.7\",\"325.2\",\"328.2\",\"330.3\",\"318.0\",\"306.9\",\"395.0\",\"391.8\",\"403.5\",\"399.6\",\"326.0\",\"325.5\",\"331.0\",\"322.1\",\"321.9\",\"392.8\",\"387.3\",\"394.9\",\"390.1\",\"397.0\",\"391.4\",\"317.6\",\"341.6\",\"327.0\",\"319.6\",\"325.9\",\"323.3\",\"324.3\",\"317.0\",\"326.0\",\"326.4\",\"316.8\",\"328.7\",\"303.7\",\"381.2\",\"397.0\",\"398.7\",\"390.3\",\"401.3\",\"382.8\",\"381.3\",\"382.4\",\"325.8\",\"324.7\",\"320.5\",\"304.6\",\"302.1\",\"392.2\",\"385.4\",\"397.4\",\"395.4\",\"400.9\",\"392.4\",\"378.1\",\"379.9\",\"379.5\",\"336.5\",\"334.7\",\"315.5\",\"303.1\",\"317.5\",\"396.6\",\"391.3\",\"404.5\",\"403.3\",\"323.4\",\"342.8\",\"322.1\",\"334.0\",\"322.9\",\"325.7\",\"319.8\",\"324.2\",\"324.0\",\"328.7\",\"344.0\",\"311.4\",\"314.0\",\"398.5\",\"385.3\",\"400.5\",\"407.8\",\"319.0\",\"344.4\",\"331.2\",\"309.4\",\"304.5\",\"327.6\",\"380.2\",\"333.6\",\"336.8\",\"315.7\",\"305.1\",\"321.9\",\"309.1\",\"385.5\",\"396.0\",\"389.8\",\"338.1\",\"338.1\",\"341.2\",\"313.3\",\"313.3\",\"319.9\",\"395.5\",\"386.7\",\"384.5\",\"340.5\",\"334.5\",\"339.5\",\"317.1\",\"327.6\",\"392.0\",\"394.2\",\"385.7\",\"325.5\",\"318.4\",\"329.1\",\"304.2\",\"310.0\",\"383.8\",\"384.8\",\"385.4\",\"393.6\",\"407.7\",\"316.7\",\"342.4\",\"323.0\",\"322.3\",\"323.1\",\"300.7\",\"389.2\",\"381.0\",\"331.3\",\"315.7\",\"316.8\",\"327.2\",\"326.1\",\"391.8\",\"394.5\",\"409.4\",\"401.7\",\"396.5\",\"377.7\",\"379.2\",\"330.7\",\"341.0\",\"343.9\",\"328.8\",\"326.2\",\"382.9\",\"390.3\",\"384.0\",\"408.9\",\"408.1\",\"319.2\",\"330.0\",\"317.0\",\"311.9\",\"318.5\",\"390.0\",\"385.5\",\"391.7\",\"405.8\",\"392.3\",\"322.3\",\"326.4\",\"335.6\",\"300.8\",\"317.8\",\"391.9\",\"386.0\",\"391.9\",\"341.0\",\"340.9\",\"315.4\",\"315.7\",\"314.2\",\"381.8\",\"394.2\",\"392.8\",\"331.7\",\"331.6\",\"332.7\",\"321.5\",\"309.5\",\"321.5\",\"330.8\",\"319.1\",\"304.8\",\"309.8\",\"383.6\",\"388.0\",\"392.3\",\"403.7\",\"398.4\",\"382.6\",\"371.1\",\"371.1\",\"328.4\",\"318.5\",\"340.0\",\"302.4\",\"317.7\",\"393.1\",\"391.6\",\"392.5\",\"340.6\",\"323.8\",\"342.6\",\"301.0\",\"330.6\",\"325.6\",\"341.3\",\"321.9\",\"317.1\",\"316.7\",\"325.1\",\"328.1\",\"319.5\",\"306.3\",\"386.7\",\"385.6\",\"399.5\",\"333.2\",\"337.2\",\"316.4\",\"326.3\",\"324.4\",\"317.0\",\"316.8\",\"309.5\",\"307.5\",\"384.7\",\"318.2\",\"325.4\",\"322.2\",\"310.6\",\"301.6\",\"398.7\",\"388.4\",\"394.3\",\"394.0\",\"394.1\",\"377.7\",\"379.3\",\"370.6\",\"559.3\",\"525.0\",\"578.1\",\"321.5\",\"333.4\",\"344.3\",\"316.2\",\"315.2\",\"385.2\",\"397.2\",\"399.6\",\"392.8\",\"400.1\",\"402.5\",\"371.9\",\"380.0\",\"375.7\",\"330.6\",\"317.5\",\"343.3\",\"314.4\",\"325.5\",\"391.1\",\"392.3\",\"397.6\",\"343.3\",\"336.1\",\"326.6\",\"329.8\",\"316.8\",\"381.3\",\"385.9\",\"404.0\",\"399.7\",\"399.0\",\"383.3\",\"317.8\",\"320.0\",\"325.4\",\"324.6\",\"312.9\",\"385.7\",\"396.2\",\"391.2\",\"405.4\",\"404.1\",\"374.6\",\"379.4\",\"382.8\",\"584.5\",\"341.3\",\"315.5\",\"320.0\",\"329.8\",\"309.9\",\"387.2\",\"381.1\",\"391.3\",\"325.8\",\"331.1\",\"340.7\",\"322.6\",\"308.9\",\"392.8\",\"391.8\",\"389.8\",\"400.7\",\"321.7\",\"315.6\",\"342.5\",\"308.2\",\"323.2\",\"391.2\",\"384.5\",\"407.4\",\"401.5\",\"403.5\",\"374.5\",\"381.0\",\"389.0\",\"336.1\",\"344.7\",\"322.9\",\"325.6\",\"343.2\",\"334.7\",\"317.6\",\"317.4\",\"323.9\",\"389.4\",\"382.2\",\"392.8\",\"394.4\",\"396.0\",\"389.5\",\"378.8\",\"379.7\",\"526.4\",\"588.3\",\"340.8\",\"324.6\",\"344.0\",\"324.8\",\"316.3\",\"308.8\",\"336.4\",\"322.4\",\"333.5\",\"322.1\",\"328.2\",\"344.0\",\"328.5\",\"321.5\",\"304.4\",\"329.1\",\"388.4\",\"380.7\",\"391.7\",\"400.4\",\"400.1\",\"405.5\",\"373.0\",\"327.6\",\"332.9\",\"316.0\",\"324.1\",\"343.2\",\"332.2\",\"319.3\",\"315.2\",\"390.3\",\"393.0\",\"388.4\",\"409.0\",\"398.9\",\"391.5\",\"371.9\",\"378.8\",\"371.4\",\"339.4\",\"332.0\",\"322.7\",\"307.2\",\"325.9\",\"391.2\",\"395.5\",\"399.0\",\"391.5\",\"397.0\",\"407.2\",\"370.7\",\"332.8\",\"331.3\",\"330.0\",\"313.5\",\"317.7\",\"324.2\",\"329.1\",\"320.0\",\"304.7\",\"309.7\",\"398.8\",\"393.2\",\"380.9\",\"409.9\",\"338.8\",\"335.6\",\"328.5\",\"329.7\",\"319.2\",\"318.2\",\"323.3\",\"300.1\",\"321.8\",\"311.1\",\"395.5\",\"398.1\",\"382.7\",\"407.6\",\"316.5\",\"332.2\",\"323.3\",\"309.5\",\"323.1\",\"300.9\",\"382.8\",\"388.0\",\"398.4\",\"391.5\",\"404.5\",\"316.5\",\"339.2\",\"341.0\",\"313.8\",\"324.6\",\"397.9\",\"397.5\",\"408.7\",\"395.9\",\"400.9\",\"381.6\",\"375.0\",\"344.3\",\"322.8\",\"328.3\",\"321.7\",\"324.9\",\"320.9\",\"341.2\",\"318.4\",\"341.8\",\"332.6\",\"326.6\",\"328.3\",\"336.4\",\"325.0\",\"306.2\",\"328.3\",\"392.1\",\"396.4\",\"405.7\",\"391.6\",\"394.6\",\"388.7\",\"382.0\",\"388.3\",\"559.9\",\"573.4\",\"327.9\",\"331.7\",\"340.5\",\"316.0\",\"327.1\",\"339.6\",\"330.5\",\"328.5\",\"323.5\",\"322.4\",\"312.0\",\"382.8\",\"381.4\",\"328.8\",\"340.1\",\"341.9\",\"324.1\",\"329.2\",\"385.1\",\"385.9\",\"395.3\",\"391.9\",\"403.6\",\"326.3\",\"316.3\",\"335.5\",\"317.3\",\"315.6\",\"390.1\",\"381.4\",\"385.4\",\"390.9\",\"323.4\",\"317.5\",\"337.9\",\"313.4\",\"326.9\",\"335.2\",\"315.6\",\"301.1\",\"313.2\",\"396.6\",\"385.5\",\"397.0\",\"405.1\",\"399.4\",\"386.5\",\"375.1\",\"385.1\",\"582.3\",\"317.9\",\"315.8\",\"321.8\",\"317.9\",\"320.8\",\"394.9\",\"390.0\",\"380.2\",\"336.5\",\"342.0\",\"318.0\",\"307.4\",\"327.6\",\"381.3\",\"382.7\",\"386.1\",\"213.1\",\"221.2\",\"211.2\",\"241.7\",\"245.9\",\"280.3\",\"319.0\",\"329.6\",\"242.7\",\"200.6\",\"272.2\",\"199.0\",\"193.4\",\"204.3\",\"323.9\",\"316.7\",\"320.6\",\"317.7\",\"311.6\",\"380.9\",\"396.2\",\"390.4\",\"400.5\",\"394.3\",\"342.1\",\"334.5\",\"321.8\",\"316.4\",\"319.4\",\"384.8\",\"381.7\",\"387.1\",\"406.5\",\"407.4\",\"401.2\",\"384.1\",\"380.9\",\"378.9\",\"595.0\",\"319.7\",\"343.2\",\"321.5\",\"301.0\",\"321.4\",\"382.0\",\"384.0\",\"395.8\",\"394.6\",\"407.4\",\"379.6\",\"378.0\",\"336.6\",\"318.4\",\"326.7\",\"317.3\",\"326.1\",\"325.0\",\"333.5\",\"320.6\",\"329.4\",\"312.8\",\"389.2\",\"391.6\",\"340.3\",\"334.2\",\"338.2\",\"305.2\",\"320.7\",\"312.5\",\"381.5\",\"392.7\",\"393.6\",\"400.9\",\"409.2\",\"331.7\",\"320.1\",\"336.9\",\"314.2\",\"325.5\",\"399.1\",\"390.5\",\"391.8\",\"323.9\",\"324.6\",\"323.5\",\"308.3\",\"307.0\",\"394.6\",\"397.7\",\"395.5\",\"397.2\",\"405.1\",\"405.6\",\"375.7\",\"344.9\",\"321.3\",\"324.0\",\"301.9\",\"311.6\",\"387.4\",\"397.6\",\"392.2\",\"400.0\",\"390.6\",\"408.5\",\"376.7\",\"323.6\",\"325.7\",\"325.1\",\"301.1\",\"314.7\",\"381.9\",\"394.3\",\"390.2\",\"401.9\",\"390.2\",\"326.3\",\"322.5\",\"334.4\",\"328.7\",\"336.3\",\"342.4\",\"322.1\",\"300.9\",\"317.5\",\"383.2\",\"384.3\",\"401.6\",\"403.8\",\"393.2\",\"370.1\",\"373.3\",\"343.8\",\"321.5\",\"320.1\",\"300.4\",\"322.8\",\"307.4\",\"392.5\",\"388.6\",\"319.1\",\"316.2\",\"338.8\",\"304.3\",\"321.5\",\"322.7\",\"386.1\",\"388.0\",\"380.5\",\"398.2\",\"408.0\",\"393.0\",\"380.4\",\"332.5\",\"330.3\",\"344.7\",\"324.1\",\"325.7\",\"387.8\",\"388.9\",\"397.8\",\"409.0\",\"395.6\",\"388.3\",\"371.3\",\"389.2\",\"596.0\",\"236.6\",\"211.0\",\"230.4\",\"235.9\",\"238.8\",\"299.6\",\"328.4\",\"324.6\",\"321.6\",\"319.2\",\"326.1\",\"344.3\",\"323.4\",\"343.2\",\"302.7\",\"310.1\",\"389.6\",\"382.5\",\"386.3\",\"404.8\",\"406.1\",\"391.4\",\"370.7\",\"382.9\",\"326.5\",\"331.1\",\"320.2\",\"300.7\",\"321.5\",\"386.7\",\"388.8\",\"390.7\",\"404.4\",\"391.4\",\"406.5\",\"377.5\",\"386.6\",\"341.8\",\"322.6\",\"339.1\",\"302.5\",\"318.6\",\"331.7\",\"321.5\",\"335.7\",\"314.7\",\"323.7\",\"387.2\",\"383.1\",\"396.5\",\"391.8\",\"408.5\",\"396.4\",\"385.4\",\"387.3\",\"325.3\",\"333.2\",\"322.6\",\"311.1\",\"313.0\",\"327.2\",\"384.7\",\"383.0\",\"331.0\",\"341.3\",\"323.1\",\"327.1\",\"321.8\",\"343.0\",\"324.1\",\"315.5\",\"306.8\",\"398.4\",\"381.0\",\"401.9\",\"392.2\",\"409.3\",\"376.6\",\"374.1\",\"375.9\",\"322.8\",\"316.6\",\"336.1\",\"318.6\",\"313.1\",\"398.0\",\"380.2\",\"406.7\",\"401.6\",\"402.5\",\"385.2\",\"376.1\",\"343.9\",\"336.6\",\"341.1\",\"303.2\",\"321.2\",\"384.2\",\"391.9\",\"394.6\",\"390.5\",\"406.4\",\"378.8\",\"378.5\",\"341.7\",\"322.3\",\"322.0\",\"310.6\",\"329.9\",\"324.3\",\"328.2\",\"315.0\",\"308.4\",\"323.7\",\"387.6\",\"388.6\",\"381.9\",\"390.9\",\"401.9\",\"408.7\",\"386.3\",\"382.7\",\"382.4\",\"320.5\",\"323.6\",\"318.4\",\"307.4\",\"328.2\",\"380.4\",\"383.9\",\"392.2\",\"407.7\",\"406.0\",\"387.6\",\"373.5\",\"321.0\",\"320.2\",\"327.0\",\"307.8\",\"305.3\",\"384.7\",\"392.8\",\"396.5\",\"407.4\",\"395.0\",\"370.2\",\"388.2\",\"376.7\",\"536.5\",\"320.2\",\"319.8\",\"344.1\",\"343.7\",\"342.2\",\"331.2\",\"329.0\",\"328.6\",\"333.0\",\"319.4\",\"302.6\",\"398.9\",\"380.1\",\"405.5\",\"398.5\",\"395.4\",\"387.0\",\"328.2\",\"320.5\",\"343.6\",\"301.8\",\"316.3\",\"389.9\",\"388.5\",\"328.1\",\"325.1\",\"342.2\",\"301.1\",\"326.3\",\"399.8\",\"385.7\",\"403.8\",\"407.1\",\"396.7\",\"388.4\",\"383.3\",\"377.3\",\"532.8\",\"511.5\",\"320.3\",\"334.8\",\"331.5\",\"321.7\",\"313.9\",\"384.1\",\"394.8\",\"406.3\",\"405.5\",\"405.8\",\"378.1\",\"371.8\",\"373.3\",\"583.6\",\"315.0\",\"340.7\",\"318.9\",\"303.1\",\"313.2\",\"324.1\",\"332.2\",\"323.3\",\"325.6\",\"316.6\",\"381.5\",\"393.2\",\"387.4\",\"390.7\",\"408.7\",\"390.8\",\"374.3\",\"375.6\",\"371.9\",\"323.2\",\"336.8\",\"340.1\",\"317.8\",\"328.7\",\"394.3\",\"386.5\",\"392.0\",\"398.5\",\"401.4\",\"315.1\",\"336.8\",\"316.4\",\"322.9\",\"306.9\",\"386.4\",\"398.0\",\"397.5\",\"409.5\",\"395.3\",\"318.2\",\"334.2\",\"329.5\",\"310.2\",\"327.9\",\"338.6\",\"324.8\",\"340.5\",\"326.6\",\"327.2\",\"386.1\",\"382.6\",\"403.5\",\"407.2\",\"391.5\",\"339.6\",\"336.4\",\"343.9\",\"300.2\",\"341.1\",\"320.6\",\"322.8\",\"303.4\",\"304.4\",\"398.8\",\"382.4\",\"383.1\",\"397.5\",\"394.9\",\"394.7\",\"324.6\",\"331.1\",\"329.1\",\"307.8\",\"302.2\",\"332.4\",\"343.5\",\"327.9\",\"310.4\",\"314.9\",\"385.8\",\"399.3\",\"390.3\",\"398.4\",\"343.6\",\"326.2\",\"343.1\",\"300.6\",\"329.4\",\"329.2\",\"323.0\",\"327.2\",\"325.4\",\"316.0\",\"388.0\",\"398.6\",\"397.5\",\"391.6\",\"406.4\",\"378.8\",\"373.3\",\"336.7\",\"315.7\",\"334.3\",\"330.5\",\"334.1\",\"330.4\",\"311.0\",\"324.8\",\"337.3\",\"333.8\",\"344.0\",\"343.0\",\"320.5\",\"300.7\",\"316.1\",\"384.8\",\"386.5\",\"380.7\",\"406.4\",\"407.8\",\"392.4\",\"332.3\",\"340.3\",\"343.2\",\"309.3\",\"317.3\",\"394.8\",\"394.7\",\"388.0\",\"402.4\",\"405.4\",\"331.5\",\"328.6\",\"332.0\",\"312.7\",\"308.6\",\"302.9\",\"392.9\",\"339.0\",\"339.9\",\"335.9\",\"327.3\",\"314.0\",\"383.7\",\"383.0\",\"381.3\",\"395.8\",\"409.7\",\"405.4\",\"371.8\",\"381.1\",\"389.2\",\"531.8\",\"334.1\",\"340.0\",\"319.9\",\"300.1\",\"318.0\",\"398.1\",\"399.7\",\"397.2\",\"392.0\",\"404.5\",\"392.3\",\"388.4\",\"373.2\",\"339.7\",\"322.9\",\"336.2\",\"303.3\",\"306.5\",\"397.7\",\"387.0\",\"395.2\",\"396.0\",\"403.9\",\"379.8\",\"378.8\",\"340.1\",\"343.7\",\"343.6\",\"301.8\",\"313.6\",\"384.0\",\"391.7\",\"329.9\",\"329.1\",\"337.1\",\"300.8\",\"326.3\",\"380.8\",\"392.0\",\"402.5\",\"397.0\",\"403.9\",\"374.3\",\"374.0\",\"330.5\",\"332.3\",\"319.6\",\"301.0\",\"323.9\",\"388.4\",\"380.5\",\"398.2\",\"406.9\",\"343.6\",\"322.4\",\"335.1\",\"317.5\",\"329.2\",\"313.3\",\"396.1\",\"380.3\",\"396.9\",\"394.5\",\"401.0\",\"395.5\",\"376.9\",\"328.3\",\"336.8\",\"328.5\",\"337.6\",\"317.4\",\"344.0\",\"327.3\",\"322.6\",\"315.4\",\"309.4\",\"311.5\",\"381.2\",\"386.0\",\"329.9\",\"334.0\",\"330.6\",\"342.2\",\"339.9\",\"325.4\",\"306.2\",\"315.6\",\"396.9\",\"398.7\",\"392.9\",\"396.7\",\"402.3\",\"374.6\",\"370.4\",\"342.8\",\"337.0\",\"329.7\",\"331.4\",\"334.7\",\"333.0\",\"320.7\",\"316.7\",\"383.2\",\"393.7\",\"402.1\",\"408.2\",\"398.7\",\"373.8\",\"377.2\",\"388.6\",\"526.6\",\"332.3\",\"326.3\",\"343.5\",\"304.6\",\"319.1\",\"385.1\",\"380.3\",\"399.1\",\"400.5\",\"392.1\",\"377.9\",\"372.6\",\"373.9\",\"596.3\",\"330.1\",\"344.5\",\"344.6\",\"317.8\",\"332.6\",\"335.2\",\"329.2\",\"305.3\",\"323.0\",\"385.2\",\"389.5\",\"399.3\",\"404.8\",\"406.7\",\"389.2\",\"377.0\",\"382.4\",\"317.0\",\"341.6\",\"326.5\",\"311.7\",\"300.7\",\"399.5\",\"393.3\",\"399.4\",\"402.0\",\"408.5\",\"400.5\",\"320.7\",\"316.4\",\"339.4\",\"317.4\",\"303.6\",\"382.7\",\"394.2\",\"399.1\",\"401.9\",\"400.4\",\"331.1\",\"336.5\",\"333.9\",\"322.4\",\"330.1\",\"323.4\",\"306.5\",\"314.2\",\"381.0\",\"399.5\",\"408.9\",\"409.3\",\"330.5\",\"344.5\",\"323.1\",\"305.4\",\"316.9\",\"303.9\",\"395.9\",\"386.6\",\"340.0\",\"337.7\",\"334.9\",\"327.1\",\"328.4\",\"387.4\",\"387.0\",\"392.6\",\"405.7\",\"329.4\",\"317.0\",\"338.4\",\"327.6\",\"303.8\",\"385.7\",\"398.6\",\"385.2\",\"405.7\",\"395.8\",\"318.5\",\"333.6\",\"324.8\",\"311.8\",\"307.5\",\"324.8\",\"391.1\",\"388.5\",\"394.7\",\"400.6\",\"398.1\",\"331.9\",\"338.7\",\"320.0\",\"326.4\",\"308.1\",\"330.7\",\"339.6\",\"332.7\",\"311.8\",\"318.9\",\"392.9\",\"385.3\",\"397.6\",\"392.4\",\"402.6\",\"377.6\",\"370.8\",\"375.2\",\"524.6\",\"503.3\",\"335.1\",\"337.6\",\"318.9\",\"308.6\",\"320.3\",\"383.1\",\"384.3\",\"382.0\",\"406.6\",\"405.0\",\"318.1\",\"327.0\",\"324.3\",\"312.8\",\"324.5\",\"387.5\",\"394.3\",\"390.4\",\"407.6\",\"403.2\",\"403.5\",\"374.6\",\"381.2\",\"333.0\",\"344.2\",\"326.2\",\"321.4\",\"337.5\",\"331.6\",\"326.9\",\"328.7\",\"318.8\",\"390.2\",\"391.4\",\"396.4\",\"400.9\",\"391.3\",\"392.3\",\"317.4\",\"339.3\",\"326.4\",\"308.1\",\"337.9\",\"337.7\",\"332.0\",\"319.2\",\"305.9\",\"393.9\",\"383.6\",\"399.5\",\"398.9\",\"407.7\",\"400.2\",\"206.4\",\"213.5\",\"215.1\",\"228.0\",\"249.8\",\"340.9\",\"342.6\",\"333.2\",\"317.6\",\"307.9\",\"342.1\",\"317.9\",\"334.7\",\"313.1\",\"324.5\",\"397.3\",\"382.5\",\"407.0\",\"394.4\",\"403.9\",\"388.4\",\"387.6\",\"389.3\",\"338.5\",\"343.4\",\"316.8\",\"315.2\",\"340.4\",\"334.3\",\"307.0\",\"314.9\",\"338.1\",\"320.5\",\"333.6\",\"311.2\",\"328.6\",\"392.9\",\"383.3\",\"381.6\",\"399.8\",\"399.5\",\"402.6\",\"323.7\",\"315.1\",\"343.0\",\"304.3\",\"322.7\",\"387.8\",\"396.2\",\"398.2\",\"393.6\",\"404.2\",\"402.1\",\"389.4\",\"371.3\",\"380.5\",\"504.2\",\"327.1\",\"315.3\",\"320.7\",\"325.5\",\"313.1\",\"393.0\",\"387.3\",\"402.3\",\"399.8\",\"409.6\",\"376.3\",\"379.0\",\"378.3\",\"595.1\",\"318.9\",\"335.3\",\"319.6\",\"314.3\",\"313.3\",\"380.7\",\"392.8\",\"399.6\",\"403.4\",\"400.3\",\"374.8\",\"383.7\",\"370.2\",\"547.4\",\"567.1\",\"558.7\",\"316.5\",\"323.6\",\"341.5\",\"321.8\",\"329.4\",\"394.1\",\"387.0\",\"398.9\",\"393.2\",\"400.7\",\"406.7\",\"329.5\",\"342.4\",\"321.5\",\"326.0\",\"311.8\",\"388.8\",\"387.7\",\"402.3\",\"405.5\",\"392.7\",\"384.5\",\"383.0\",\"381.3\",\"505.8\",\"342.9\",\"336.6\",\"327.3\",\"322.8\",\"301.0\",\"322.0\",\"394.1\",\"394.4\",\"381.9\",\"404.4\",\"408.7\",\"400.7\",\"388.6\",\"338.4\",\"337.5\",\"341.8\",\"302.6\",\"303.1\",\"398.9\",\"381.8\",\"403.2\",\"407.1\",\"408.4\",\"379.3\",\"387.4\",\"389.8\",\"578.1\",\"579.8\",\"332.4\",\"327.6\",\"323.1\",\"307.0\",\"327.7\",\"313.4\",\"380.6\",\"329.6\",\"329.3\",\"333.6\",\"313.0\",\"334.0\",\"329.7\",\"342.4\",\"309.0\",\"304.4\",\"389.4\",\"397.6\",\"401.8\",\"390.8\",\"403.7\",\"372.5\",\"374.6\",\"376.4\",\"591.0\",\"515.6\",\"327.7\",\"332.2\",\"338.0\",\"306.9\",\"306.4\",\"309.2\",\"392.1\",\"388.1\",\"399.8\",\"333.9\",\"319.3\",\"322.0\",\"327.4\",\"315.3\",\"387.7\",\"394.8\",\"399.6\",\"390.4\",\"393.8\",\"409.4\",\"377.4\",\"388.3\",\"341.9\",\"339.1\",\"333.9\",\"327.1\",\"319.0\",\"341.1\",\"331.9\",\"317.7\",\"328.7\",\"316.3\",\"394.8\",\"383.3\",\"408.4\",\"327.8\",\"337.8\",\"339.4\",\"304.4\",\"320.7\",\"303.1\",\"383.3\",\"391.0\",\"397.5\",\"404.0\",\"396.6\",\"396.1\",\"336.3\",\"335.5\",\"324.4\",\"300.2\",\"318.7\",\"393.8\",\"382.8\",\"401.1\",\"393.4\",\"395.8\",\"370.6\",\"377.1\",\"382.7\",\"538.8\",\"319.3\",\"338.0\",\"336.0\",\"310.9\",\"325.2\",\"343.4\",\"330.7\",\"329.4\",\"312.7\",\"388.4\",\"395.6\",\"394.0\",\"401.4\",\"406.2\",\"382.3\",\"341.7\",\"340.5\",\"338.5\",\"314.2\",\"323.5\",\"330.0\",\"339.0\",\"320.0\",\"309.5\",\"399.8\",\"380.3\",\"403.0\",\"337.4\",\"339.9\",\"325.1\",\"306.1\",\"327.4\",\"398.2\",\"389.8\",\"391.5\",\"404.4\",\"399.8\",\"403.5\",\"386.3\",\"376.5\",\"329.0\",\"326.6\",\"323.5\",\"322.8\",\"303.8\",\"388.4\",\"398.3\",\"406.6\",\"326.8\",\"321.5\",\"341.5\",\"310.7\",\"320.2\",\"318.7\",\"340.1\",\"322.0\",\"329.7\",\"317.0\",\"342.6\",\"313.7\",\"300.8\",\"396.2\",\"386.6\",\"409.2\",\"393.0\",\"316.8\",\"326.5\",\"320.5\",\"315.9\",\"316.1\",\"315.1\",\"388.4\",\"389.9\",\"394.7\",\"392.5\",\"398.6\",\"402.7\",\"373.6\",\"336.1\",\"344.1\",\"315.6\",\"323.6\",\"344.4\",\"342.4\",\"343.2\",\"311.5\",\"318.0\",\"315.2\",\"333.6\",\"327.3\",\"302.4\",\"388.8\",\"399.1\",\"398.0\",\"395.6\",\"408.1\",\"398.5\",\"387.0\",\"387.7\",\"326.0\",\"316.9\",\"333.9\",\"321.5\",\"323.9\",\"326.6\",\"302.1\",\"311.3\",\"308.4\",\"398.6\",\"399.1\",\"395.5\",\"344.7\",\"326.0\",\"343.7\",\"307.8\",\"309.3\",\"394.3\",\"380.5\",\"389.0\",\"397.3\",\"409.0\",\"391.7\",\"322.4\",\"322.3\",\"337.3\",\"323.4\",\"300.8\",\"393.8\",\"388.6\",\"400.4\",\"390.0\",\"394.0\",\"385.0\",\"387.1\",\"374.1\",\"552.2\",\"542.1\",\"544.9\",\"342.5\",\"316.1\",\"322.3\",\"310.5\",\"325.4\",\"388.0\",\"391.9\",\"395.1\",\"391.1\",\"402.1\",\"394.2\",\"387.1\",\"339.4\",\"341.9\",\"335.2\",\"340.0\",\"336.0\",\"340.3\",\"330.8\",\"333.6\",\"321.7\",\"326.0\",\"327.4\",\"331.1\",\"328.1\",\"305.5\",\"381.4\",\"390.0\",\"390.4\",\"399.6\",\"341.9\",\"344.5\",\"322.5\",\"311.6\",\"315.8\",\"380.1\",\"392.8\",\"407.2\",\"399.0\",\"394.7\",\"380.7\",\"373.0\",\"370.7\",\"598.2\",\"334.4\",\"317.3\",\"329.6\",\"302.9\",\"310.8\",\"392.5\",\"389.8\",\"398.3\",\"408.0\",\"403.3\",\"403.8\",\"379.6\",\"337.3\",\"339.5\",\"337.6\",\"318.6\",\"327.6\",\"388.0\",\"400.0\",\"386.9\",\"393.7\",\"397.0\",\"394.6\",\"343.9\",\"330.3\",\"330.3\",\"325.1\",\"301.3\",\"389.2\",\"385.1\",\"389.3\",\"318.8\",\"315.3\",\"318.2\",\"326.2\",\"302.0\",\"303.7\",\"380.8\",\"387.9\",\"385.8\",\"405.2\",\"340.6\",\"315.6\",\"332.7\",\"323.8\",\"333.8\",\"328.9\",\"312.9\",\"313.2\",\"397.0\",\"390.9\",\"390.5\",\"316.7\",\"327.7\",\"344.0\",\"324.0\",\"309.5\",\"320.5\",\"337.0\",\"326.7\",\"310.6\",\"316.3\",\"326.7\",\"334.8\",\"344.1\",\"318.0\",\"303.8\",\"305.2\",\"315.2\",\"326.4\",\"342.5\",\"329.6\",\"314.7\",\"313.6\",\"398.7\",\"385.0\",\"388.9\",\"395.9\",\"397.2\",\"400.2\",\"374.7\",\"331.2\",\"321.7\",\"343.9\",\"315.4\",\"301.1\",\"382.7\",\"387.0\",\"382.0\",\"409.7\",\"396.1\",\"336.4\",\"331.7\",\"320.7\",\"322.9\",\"326.1\",\"387.8\",\"392.4\",\"384.5\",\"397.5\",\"398.7\",\"320.6\",\"326.2\",\"331.6\",\"302.2\",\"309.6\",\"314.1\",\"393.6\",\"384.3\",\"388.8\",\"391.6\",\"401.1\",\"400.9\",\"327.6\",\"333.7\",\"320.6\",\"328.6\",\"316.7\",\"325.0\",\"341.6\",\"341.8\",\"302.3\",\"314.6\",\"380.6\",\"394.5\",\"380.9\",\"399.5\",\"405.3\",\"341.0\",\"342.6\",\"327.9\",\"322.0\",\"317.5\",\"384.5\",\"390.8\",\"400.0\",\"403.8\",\"401.1\",\"333.4\",\"321.7\",\"318.4\",\"334.6\",\"324.3\",\"314.6\",\"321.8\",\"315.7\",\"338.6\",\"324.6\",\"310.7\",\"320.2\",\"386.4\",\"315.7\",\"315.5\",\"324.2\",\"327.3\",\"317.7\",\"389.3\",\"381.2\",\"406.8\",\"401.6\",\"401.4\",\"377.1\",\"388.6\",\"382.2\",\"320.0\",\"319.9\",\"334.4\",\"305.4\",\"313.3\",\"308.2\",\"384.0\",\"391.8\",\"398.3\",\"390.1\",\"341.4\",\"333.0\",\"332.3\",\"328.5\",\"313.5\",\"344.9\",\"330.9\",\"338.7\",\"343.0\",\"329.1\",\"330.9\",\"310.1\",\"313.0\",\"302.9\",\"397.5\",\"388.0\",\"320.8\",\"316.9\",\"344.5\",\"312.3\",\"326.3\",\"322.4\",\"399.8\",\"315.7\",\"315.3\",\"339.9\",\"306.6\",\"304.2\",\"317.1\",\"398.3\",\"385.3\",\"385.7\",\"328.5\",\"337.3\",\"322.7\",\"324.0\",\"316.2\",\"325.2\",\"309.3\",\"331.7\",\"332.0\",\"315.8\",\"302.3\",\"309.2\",\"387.9\",\"398.7\",\"398.7\",\"394.0\",\"407.7\",\"379.6\",\"387.4\",\"378.9\",\"319.8\",\"326.8\",\"324.6\",\"304.7\",\"341.7\",\"335.7\",\"330.3\",\"313.3\",\"319.8\",\"398.6\",\"384.9\",\"394.7\",\"322.8\",\"321.8\",\"341.9\",\"326.9\",\"319.5\",\"390.1\",\"397.6\",\"401.4\",\"407.9\",\"397.0\",\"380.9\",\"388.7\",\"386.4\",\"338.0\",\"344.4\",\"343.0\",\"322.6\",\"325.5\",\"327.7\",\"394.0\",\"396.2\",\"399.7\",\"405.6\",\"337.4\",\"326.0\",\"329.1\",\"304.5\",\"316.2\",\"381.1\",\"397.1\",\"397.7\",\"403.6\",\"397.7\",\"372.4\",\"370.5\",\"373.1\",\"541.8\",\"566.6\",\"316.8\",\"322.4\",\"337.3\",\"334.6\",\"318.9\",\"337.8\",\"303.8\",\"329.4\",\"396.0\",\"389.9\",\"399.3\",\"402.3\",\"395.9\",\"373.4\",\"340.1\",\"329.4\",\"324.3\",\"322.4\",\"307.9\",\"315.2\",\"383.9\",\"397.0\",\"387.3\",\"324.1\",\"330.6\",\"330.9\",\"308.0\",\"327.1\",\"385.8\",\"381.3\",\"390.9\",\"406.7\",\"403.5\",\"403.7\",\"385.4\",\"372.8\",\"384.1\",\"560.4\",\"339.6\",\"318.2\",\"340.2\",\"324.4\",\"318.5\",\"305.3\",\"344.3\",\"331.0\",\"342.2\",\"300.0\",\"318.3\",\"390.7\",\"384.5\",\"396.8\",\"390.8\",\"403.3\",\"335.6\",\"339.8\",\"324.9\",\"326.9\",\"325.8\",\"328.4\",\"321.9\",\"318.6\",\"325.4\",\"317.7\",\"317.9\",\"381.4\",\"388.1\",\"398.0\",\"404.6\",\"396.5\",\"374.6\",\"374.8\",\"375.3\",\"338.4\",\"340.2\",\"331.1\",\"303.9\",\"302.6\",\"322.4\",\"385.9\",\"391.1\",\"396.2\",\"392.2\",\"410.0\",\"343.4\",\"322.1\",\"317.4\",\"327.1\",\"317.3\",\"323.3\",\"328.9\",\"326.4\",\"325.8\",\"336.6\",\"323.6\",\"321.8\",\"316.1\",\"390.0\",\"385.2\",\"394.1\",\"398.5\",\"393.0\",\"405.8\",\"320.8\",\"333.4\",\"340.6\",\"307.4\",\"327.5\",\"336.3\",\"330.2\",\"320.9\",\"314.2\",\"393.3\",\"389.2\",\"391.0\",\"399.3\",\"402.4\",\"372.6\",\"370.2\",\"385.2\",\"344.5\",\"321.7\",\"331.3\",\"312.2\",\"325.1\",\"312.5\",\"396.2\",\"397.6\",\"380.4\",\"408.2\",\"399.1\",\"398.5\",\"370.4\",\"340.5\",\"316.4\",\"323.1\",\"329.0\",\"311.9\",\"392.2\",\"381.4\",\"399.2\",\"392.4\",\"400.7\",\"381.1\",\"386.5\",\"330.5\",\"340.8\",\"321.6\",\"326.2\",\"324.1\",\"398.5\",\"395.0\",\"390.6\",\"410.0\",\"403.8\",\"378.0\",\"389.8\",\"378.6\",\"504.4\",\"328.2\",\"317.8\",\"319.7\",\"324.2\",\"338.7\",\"318.1\",\"316.7\",\"302.6\",\"314.6\",\"340.7\",\"342.9\",\"321.8\",\"301.2\",\"320.2\",\"301.0\",\"395.0\",\"395.6\",\"398.8\",\"391.9\",\"331.6\",\"319.9\",\"325.3\",\"312.3\",\"329.9\",\"390.4\",\"381.9\",\"383.2\",\"400.5\",\"408.6\",\"407.2\",\"378.1\",\"373.4\",\"331.3\",\"341.8\",\"319.7\",\"315.3\",\"308.3\",\"392.4\",\"385.2\",\"392.1\",\"392.0\",\"399.1\",\"378.5\",\"383.2\",\"343.6\",\"315.2\",\"317.3\",\"301.6\",\"319.4\",\"386.0\",\"395.0\",\"400.7\",\"409.4\",\"401.6\",\"389.8\",\"388.6\",\"337.9\",\"341.4\",\"339.5\",\"309.2\",\"305.6\",\"389.4\",\"399.8\",\"397.1\",\"399.7\",\"337.1\",\"329.9\",\"321.6\",\"322.3\",\"302.2\",\"385.8\",\"398.1\",\"391.0\",\"409.6\",\"391.6\",\"389.9\",\"370.3\",\"389.8\",\"511.6\",\"575.3\",\"323.7\",\"327.0\",\"341.1\",\"323.5\",\"312.3\",\"380.7\",\"392.1\",\"383.9\",\"395.1\",\"393.6\",\"399.2\",\"373.0\",\"389.9\",\"325.2\",\"333.2\",\"340.9\",\"302.7\",\"313.4\",\"389.8\",\"397.5\",\"400.1\",\"393.5\",\"338.4\",\"321.0\",\"319.2\",\"316.6\",\"327.1\",\"339.2\",\"318.4\",\"328.8\",\"323.7\",\"325.8\",\"322.5\",\"302.7\",\"310.7\",\"383.2\",\"380.2\",\"383.4\",\"399.2\",\"402.5\",\"391.4\",\"335.6\",\"323.2\",\"330.5\",\"340.6\",\"326.4\",\"341.1\",\"310.8\",\"307.4\",\"333.3\",\"316.7\",\"325.9\",\"308.6\",\"322.1\",\"385.2\",\"380.6\",\"402.1\",\"399.5\",\"398.0\",\"331.3\",\"323.8\",\"319.3\",\"320.9\",\"319.7\",\"344.1\",\"342.7\",\"324.1\",\"304.4\",\"318.7\",\"316.9\",\"396.7\",\"382.2\",\"382.8\",\"391.8\",\"391.3\",\"406.9\",\"372.6\",\"340.7\",\"342.6\",\"318.8\",\"317.2\",\"300.1\",\"381.1\",\"392.8\",\"383.5\",\"404.4\",\"409.5\",\"408.7\",\"373.2\",\"372.4\",\"323.2\",\"337.8\",\"336.0\",\"328.8\",\"301.6\",\"316.9\",\"390.4\",\"395.6\",\"397.8\",\"401.5\",\"392.8\",\"325.5\",\"327.0\",\"323.5\",\"314.2\",\"306.6\",\"317.2\",\"397.9\",\"381.9\",\"395.7\",\"390.4\",\"406.7\",\"396.1\",\"318.7\",\"343.7\",\"344.3\",\"318.4\",\"321.4\",\"391.7\",\"398.1\",\"398.6\",\"397.6\",\"399.3\",\"391.5\",\"370.3\",\"382.7\",\"330.5\",\"343.1\",\"331.7\",\"303.4\",\"323.8\",\"393.0\",\"389.9\",\"380.7\",\"404.3\",\"402.2\",\"315.7\",\"319.8\",\"329.2\",\"306.1\",\"312.0\",\"381.8\",\"392.3\",\"393.9\",\"406.5\",\"404.3\",\"404.4\",\"320.3\",\"338.3\",\"322.6\",\"316.1\",\"302.9\",\"392.5\",\"389.0\",\"382.6\",\"336.5\",\"334.4\",\"316.5\",\"311.7\",\"302.8\",\"344.9\",\"322.5\",\"334.9\",\"320.0\",\"328.9\",\"315.6\",\"329.7\",\"338.5\",\"322.6\",\"327.5\",\"380.6\",\"395.5\",\"387.4\",\"404.4\",\"405.7\",\"395.5\",\"377.9\",\"381.8\",\"379.0\",\"343.8\",\"332.5\",\"340.3\",\"316.0\",\"329.3\",\"383.9\",\"384.4\",\"393.0\",\"390.5\",\"409.6\",\"401.5\",\"373.0\",\"376.4\",\"385.4\",\"338.5\",\"325.4\",\"343.7\",\"329.0\",\"310.4\",\"395.9\",\"385.6\",\"380.6\",\"402.9\",\"400.0\",\"323.6\",\"327.8\",\"331.3\",\"316.7\",\"322.0\",\"337.5\",\"344.1\",\"338.5\",\"323.3\",\"317.2\",\"316.6\",\"324.5\",\"380.9\",\"385.8\",\"336.3\",\"328.1\",\"344.1\",\"318.3\",\"313.4\",\"386.8\",\"391.3\",\"407.7\",\"396.9\",\"408.6\",\"330.1\",\"336.5\",\"325.0\",\"340.6\",\"333.1\",\"326.7\",\"303.6\",\"313.4\",\"306.2\",\"381.0\",\"393.9\",\"389.4\",\"391.8\",\"392.6\",\"392.4\",\"387.7\",\"384.0\",\"335.3\",\"336.8\",\"327.9\",\"328.0\",\"327.4\",\"343.6\",\"329.1\",\"343.6\",\"305.2\",\"315.8\",\"394.4\",\"394.8\",\"393.3\",\"322.4\",\"317.4\",\"331.0\",\"319.9\",\"318.6\",\"320.9\",\"381.8\",\"336.5\",\"335.3\",\"342.6\",\"317.3\",\"316.0\",\"320.1\",\"334.5\",\"309.7\",\"317.0\",\"384.5\",\"381.2\",\"393.4\",\"406.3\",\"320.4\",\"323.2\",\"327.3\",\"311.2\",\"335.1\",\"324.4\",\"317.8\",\"318.2\",\"319.5\",\"393.1\",\"386.9\",\"399.7\",\"409.3\",\"401.5\",\"385.6\",\"389.7\",\"378.2\",\"503.4\",\"559.4\",\"327.9\",\"339.2\",\"337.9\",\"328.9\",\"326.6\",\"396.7\",\"397.2\",\"403.0\",\"397.3\",\"395.1\",\"388.4\",\"372.1\",\"384.0\",\"527.1\",\"590.8\",\"592.1\",\"326.0\",\"323.4\",\"333.5\",\"313.5\",\"340.7\",\"327.8\",\"323.3\",\"325.3\",\"306.0\",\"384.8\",\"392.3\",\"386.2\",\"407.2\",\"404.9\",\"398.6\",\"385.8\",\"331.5\",\"323.1\",\"325.8\",\"322.5\",\"323.7\",\"325.1\",\"382.8\",\"384.1\",\"395.9\",\"391.5\",\"337.2\",\"319.0\",\"338.3\",\"307.3\",\"306.7\",\"386.2\",\"384.1\",\"400.3\",\"394.5\",\"393.7\",\"387.3\",\"375.4\",\"372.9\",\"315.9\",\"322.3\",\"321.2\",\"316.8\",\"325.4\",\"342.3\",\"314.7\",\"320.4\",\"391.4\",\"390.6\",\"397.7\",\"397.4\",\"399.9\",\"382.1\",\"383.9\",\"386.9\",\"331.0\",\"344.8\",\"323.5\",\"329.4\",\"313.5\",\"394.0\",\"398.1\",\"332.4\",\"343.5\",\"326.4\",\"306.7\",\"324.5\",\"325.5\",\"321.6\",\"318.7\",\"327.9\",\"320.4\",\"341.4\",\"345.0\",\"314.0\",\"300.5\",\"380.5\",\"387.2\",\"385.4\",\"396.4\",\"402.3\",\"405.6\",\"378.3\",\"370.7\",\"370.5\",\"344.4\",\"325.4\",\"333.0\",\"317.3\",\"309.1\",\"325.6\",\"390.4\",\"393.8\",\"382.1\",\"399.8\",\"390.7\",\"404.5\",\"385.6\",\"371.1\",\"334.7\",\"344.4\",\"323.9\",\"319.8\",\"301.7\",\"399.6\",\"380.9\",\"407.0\",\"409.2\",\"405.1\",\"378.0\",\"384.1\",\"382.4\",\"545.1\",\"549.4\",\"334.4\",\"326.4\",\"334.9\",\"326.3\",\"302.1\",\"385.9\",\"395.3\",\"390.6\",\"404.6\",\"390.9\",\"388.8\",\"371.1\",\"332.0\",\"338.2\",\"340.5\",\"318.4\",\"304.9\",\"380.3\",\"396.0\",\"389.5\",\"405.5\",\"393.0\",\"315.8\",\"343.4\",\"323.7\",\"316.8\",\"319.8\",\"339.1\",\"331.7\",\"322.1\",\"329.0\",\"327.0\",\"386.4\",\"391.3\",\"403.4\",\"406.9\",\"391.4\",\"372.4\",\"376.5\",\"386.1\",\"597.1\",\"595.2\",\"339.6\",\"321.4\",\"334.0\",\"323.6\",\"307.1\",\"380.4\",\"393.9\",\"343.0\",\"337.3\",\"338.2\",\"310.0\",\"300.0\",\"387.2\",\"383.5\",\"398.5\",\"398.9\",\"406.0\",\"396.6\",\"328.2\",\"316.4\",\"332.9\",\"325.6\",\"319.6\",\"397.4\",\"380.5\",\"400.0\",\"398.4\",\"394.6\",\"407.6\",\"373.4\",\"375.6\",\"370.6\",\"582.0\",\"332.8\",\"334.0\",\"315.5\",\"328.3\",\"322.1\",\"326.4\",\"329.5\",\"329.5\",\"306.5\",\"313.1\",\"380.2\",\"396.3\",\"332.7\",\"315.6\",\"327.6\",\"336.6\",\"316.6\",\"332.9\",\"306.4\",\"320.3\",\"399.6\",\"391.0\",\"384.7\",\"405.1\",\"405.8\",\"399.1\",\"370.1\",\"342.5\",\"332.3\",\"321.7\",\"308.4\",\"327.8\",\"397.4\",\"388.6\",\"408.6\",\"390.6\",\"400.6\",\"381.8\",\"375.0\",\"378.6\",\"569.6\",\"584.1\",\"343.7\",\"315.3\",\"345.0\",\"303.7\",\"312.8\",\"321.2\",\"329.7\",\"328.2\",\"317.3\",\"319.4\",\"307.2\",\"399.7\",\"383.6\",\"393.2\",\"409.0\",\"409.0\",\"405.2\",\"377.4\",\"381.3\",\"379.4\",\"540.2\",\"316.7\",\"332.9\",\"333.8\",\"322.6\",\"322.4\",\"328.0\",\"399.8\",\"323.8\",\"343.6\",\"340.4\",\"324.6\",\"322.5\",\"328.1\",\"327.8\",\"310.0\",\"316.6\",\"316.3\",\"387.6\",\"385.5\",\"320.2\",\"318.2\",\"335.9\",\"324.5\",\"319.0\",\"387.4\",\"388.1\",\"398.0\",\"343.1\",\"338.4\",\"343.0\",\"307.8\",\"340.2\",\"319.1\",\"327.2\",\"310.4\",\"304.5\",\"382.3\",\"386.9\",\"383.4\",\"395.9\",\"406.8\",\"405.2\",\"385.8\",\"388.9\",\"380.3\",\"325.9\",\"332.4\",\"319.8\",\"300.6\",\"302.2\",\"310.8\",\"388.9\",\"320.2\",\"319.6\",\"318.0\",\"311.2\",\"309.5\",\"386.8\",\"394.2\",\"394.4\",\"397.2\",\"402.8\",\"406.1\",\"387.2\",\"324.6\",\"343.3\",\"316.6\",\"329.2\",\"320.8\",\"328.1\",\"312.2\",\"327.2\",\"386.4\",\"389.7\",\"386.8\",\"408.4\",\"396.9\",\"402.2\",\"330.5\",\"328.7\",\"330.7\",\"312.1\",\"316.9\",\"393.2\",\"385.5\",\"399.8\",\"397.2\",\"407.7\",\"399.8\",\"343.8\",\"331.5\",\"342.0\",\"329.1\",\"303.3\",\"384.2\",\"383.6\",\"381.9\",\"392.3\",\"315.9\",\"343.3\",\"322.9\",\"300.7\",\"307.3\",\"318.8\",\"393.7\",\"399.6\",\"397.4\",\"409.4\",\"323.2\",\"336.4\",\"329.8\",\"327.6\",\"319.6\",\"323.0\",\"339.4\",\"339.4\",\"325.8\",\"324.4\",\"313.6\",\"380.6\",\"385.6\",\"398.4\",\"394.4\",\"401.9\",\"385.6\",\"384.3\",\"383.8\",\"569.3\",\"331.8\",\"343.7\",\"339.6\",\"313.2\",\"320.2\",\"315.2\",\"320.4\",\"307.5\",\"300.8\",\"395.2\",\"383.6\",\"397.0\",\"407.8\",\"344.1\",\"329.4\",\"345.0\",\"339.9\",\"337.3\",\"328.4\",\"300.2\",\"310.8\",\"310.0\",\"388.9\",\"399.8\",\"394.7\",\"391.5\",\"397.6\",\"392.4\",\"332.7\",\"320.0\",\"331.0\",\"300.3\",\"327.3\",\"395.8\",\"390.9\",\"394.1\",\"393.5\",\"407.7\",\"408.6\",\"377.4\"]},\"selected\":{\"id\":\"1348\"},\"selection_policy\":{\"id\":\"1347\"}},\"id\":\"1266\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1134\"},\"glyph\":{\"id\":\"1135\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1137\"},\"nonselection_glyph\":{\"id\":\"1136\"},\"view\":{\"id\":\"1139\"}},\"id\":\"1138\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1025\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"1026\",\"type\":\"ResetTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1269\",\"type\":\"Circle\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"1166\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1045\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1153\",\"type\":\"BasicTicker\"},{\"attributes\":{\"child\":{\"id\":\"1003\"},\"title\":\"Fibrin\"},\"id\":\"1048\",\"type\":\"Panel\"},{\"attributes\":{\"tools\":[{\"id\":\"1160\"},{\"id\":\"1161\"},{\"id\":\"1162\"},{\"id\":\"1163\"},{\"id\":\"1164\"},{\"id\":\"1165\"}]},\"id\":\"1167\",\"type\":\"Toolbar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1044\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1229\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1339\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"1148\",\"type\":\"LinearScale\"},{\"attributes\":{\"axis_label\":\"days\",\"axis_label_standoff\":10,\"axis_label_text_color\":\"#E0E0E0\",\"axis_label_text_font\":\"Helvetica\",\"axis_label_text_font_size\":\"1.25em\",\"axis_label_text_font_style\":\"normal\",\"axis_line_alpha\":0,\"axis_line_color\":\"#E0E0E0\",\"coordinates\":null,\"formatter\":{\"id\":\"1320\"},\"group\":null,\"major_label_policy\":{\"id\":\"1321\"},\"major_label_text_color\":\"#E0E0E0\",\"major_label_text_font\":\"Helvetica\",\"major_label_text_font_size\":\"1.025em\",\"major_tick_line_alpha\":0,\"major_tick_line_color\":\"#E0E0E0\",\"minor_tick_line_alpha\":0,\"minor_tick_line_color\":\"#E0E0E0\",\"ticker\":{\"id\":\"1245\"}},\"id\":\"1244\",\"type\":\"LinearAxis\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"1028\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"1340\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.5},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.5},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1043\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"days\",\"axis_label_standoff\":10,\"axis_label_text_color\":\"#E0E0E0\",\"axis_label_text_font\":\"Helvetica\",\"axis_label_text_font_size\":\"1.25em\",\"axis_label_text_font_style\":\"normal\",\"axis_line_alpha\":0,\"axis_line_color\":\"#E0E0E0\",\"coordinates\":null,\"formatter\":{\"id\":\"1296\"},\"group\":null,\"major_label_policy\":{\"id\":\"1297\"},\"major_label_text_color\":\"#E0E0E0\",\"major_label_text_font\":\"Helvetica\",\"major_label_text_font_size\":\"1.025em\",\"major_tick_line_alpha\":0,\"major_tick_line_color\":\"#E0E0E0\",\"minor_tick_line_alpha\":0,\"minor_tick_line_color\":\"#E0E0E0\",\"ticker\":{\"id\":\"1061\"}},\"id\":\"1060\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1164\",\"type\":\"ResetTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1228\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1240\",\"type\":\"LinearScale\"},{\"attributes\":{\"tools\":[{\"id\":\"1022\"},{\"id\":\"1023\"},{\"id\":\"1024\"},{\"id\":\"1025\"},{\"id\":\"1026\"},{\"id\":\"1027\"}]},\"id\":\"1029\",\"type\":\"Toolbar\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1042\"},\"glyph\":{\"id\":\"1043\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1045\"},\"nonselection_glyph\":{\"id\":\"1044\"},\"view\":{\"id\":\"1047\"}},\"id\":\"1046\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Interleukin 6 in Serum or Plasma\",\"text_color\":\"#E0E0E0\",\"text_font\":\"Helvetica\",\"text_font_size\":\"1.15em\"},\"id\":\"1050\",\"type\":\"Title\"},{\"attributes\":{\"overlay\":{\"id\":\"1120\"}},\"id\":\"1116\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"1163\",\"type\":\"SaveTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.5},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.5},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1273\",\"type\":\"Circle\"},{\"attributes\":{\"overlay\":{\"id\":\"1166\"}},\"id\":\"1162\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"source\":{\"id\":\"1042\"}},\"id\":\"1047\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"1160\",\"type\":\"PanTool\"},{\"attributes\":{},\"id\":\"1242\",\"type\":\"LinearScale\"},{\"attributes\":{\"child\":{\"id\":\"1187\"},\"title\":\"Lymphocytes\"},\"id\":\"1232\",\"type\":\"Panel\"},{\"attributes\":{},\"id\":\"1150\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"1019\",\"type\":\"BasicTicker\"},{\"attributes\":{\"data\":{\"x\":[0,1,2,3,4,5,6,7,8,9,10,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,6,7,8,9,10,11,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,7,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,10,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,7,8,9,10,11,12,13,14,15,16,16,17,18,19,20,21,22,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,6,7,8,9,10,11,12,13,13,14,15,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,7,8,9,10,11,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,15,0,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,17,18,19,20,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,7,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,17,18,19,20,0,1,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,6,7,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,7,8,9,10,11,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,6,7,8,9,10,11,12,13,14,15,15,16,17,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,5,6,7,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,7,8,9,10,11,12,13,14,15,16,17,18,19,20,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,6,7,8,9,10,11,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,11,12,0,1,2,3,4,5,6,7,8,9,0,2,3,4,5,6,7,8,9,10,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,5,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,8,9,10,11,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,5,6,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,6,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,5,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,7,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,6,7,8,9,10,11,12,13,14,15,16,17,18,19,19,20,21,22,23,24,25,26,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,6,7,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,9,10,11,12,12,13,14,15,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,7,8,9,10,11,12,13,14,15,16,17,18,19,20,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,7,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,7,8,9,10,11,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,7,8,9,10,11,12,13,15,16,17,18,19,20,0,1,2,3,4,5,6,7,8,9,10,11,5,6,7,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,8,9,10,11,12,0,1,2,3,4,5,6,7,8,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,0,1,2,3,4,5,6,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,0,1,2,3,4,5,7,8,9,10,11,12,0,1,2,3,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,7,8,9,10,11,12,13,14,15,16,17,18,19,20,6,7,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,6,7,8,9,10,11,12,13,14,15,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,5,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,5,6,7,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,11,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,7,8,9,10,11,12,13,14,15,16,17,18,19,19,20,21,22,23,24,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,6,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,8,9,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,10,11,7,8,9,10,11,12,13,14,15,16,17,18,19,20,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,6,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,10,11,12,13,14,0,1,2,3,4,5,6,7,8,9,10,11,12,13,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,7,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,5,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,6,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,15,16,17,0,1,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,0,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,10,11,12,0,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,17,0,1,2,3,4,5,6,7,8,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,7,8,9,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,7,8,9,10,11,12,13,14,15,16,17,18,19,20,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,15,16,17,18,19,20,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,13,13,14,0,1,2,3,4,5,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,10,11,12,7,8,9,10,11,12,13,14,15,16,17,18,19,20,0,1,2,3,4,5,6,7,8,9,10,11,12,13,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,10,10,11,12,13,14,0,1,2,3,4,5,6,7,8,7,8,9,10,11,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9],\"y\":[\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"0.9\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.3\",\"1.3\",\"1.2\",\"1.4\",\"1.4\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.4\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.4\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.3\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.2\",\"1.1\",\"1.2\",\"1.2\",\"1.3\",\"1.4\",\"1.4\",\"1.5\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.1\",\"0.9\",\"0.9\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.3\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.3\",\"1.3\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.3\",\"1.3\",\"1.1\",\"1.4\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.4\",\"1.3\",\"1.5\",\"1.3\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.3\",\"1.2\",\"1.5\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.3\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.3\",\"1.3\",\"1.2\",\"1.4\",\"1.4\",\"1.3\",\"1.4\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.3\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.2\",\"1.2\",\"1.3\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.3\",\"1.3\",\"1.2\",\"1.5\",\"1.3\",\"1.4\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.3\",\"1.3\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.3\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"0.9\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.2\",\"1.3\",\"1.3\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.3\",\"1.2\",\"1.2\",\"1.4\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.3\",\"1.3\",\"1.2\",\"1.5\",\"1.5\",\"1.3\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"0.9\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"0.9\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.3\",\"1.1\",\"1.3\",\"1.5\",\"1.4\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"0.9\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.3\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.3\",\"1.2\",\"1.5\",\"1.4\",\"1.4\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.1\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.2\",\"1.3\",\"1.1\",\"1.4\",\"1.4\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.3\",\"1.2\",\"1.4\",\"1.4\",\"1.4\",\"1.4\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.3\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"0.9\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.2\",\"1.1\",\"1.2\",\"1.3\",\"1.2\",\"1.2\",\"1.4\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.2\",\"1.3\",\"1.2\",\"1.3\",\"1.3\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.2\",\"1.3\",\"1.2\",\"1.5\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.3\",\"1.3\",\"1.3\",\"1.4\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.4\",\"1.3\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.4\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.4\",\"1.3\",\"1.4\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.4\",\"1.4\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.2\",\"1.1\",\"1.3\",\"1.3\",\"1.4\",\"1.3\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.3\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.2\",\"1.3\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.3\",\"1.2\",\"1.1\",\"1.4\",\"1.4\",\"1.4\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.2\",\"1.3\",\"1.3\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.3\",\"1.4\",\"1.5\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.3\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.2\",\"1.3\",\"1.3\",\"1.3\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.2\",\"1.4\",\"1.5\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"0.9\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.2\",\"1.1\",\"1.3\",\"1.2\",\"1.3\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.3\",\"1.4\",\"1.4\",\"1.4\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"0.9\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.2\",\"1.1\",\"1.2\",\"1.1\",\"1.2\",\"1.1\",\"1.4\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.1\",\"1.2\",\"1.3\",\"1.4\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.5\",\"1.4\",\"1.4\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.1\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.2\",\"1.3\",\"1.3\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.3\",\"1.5\",\"1.3\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.3\",\"1.2\",\"1.3\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"0.9\",\"1.0\",\"1.2\",\"1.1\",\"1.2\",\"1.2\",\"1.2\",\"1.3\",\"1.4\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.1\",\"1.2\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.1\",\"1.2\",\"1.3\",\"1.3\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.2\",\"1.3\",\"1.3\",\"1.1\",\"1.4\",\"1.3\",\"1.3\",\"1.5\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"0.9\",\"1.2\",\"1.2\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"1.1\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"0.8\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.3\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.8\",\"0.8\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.8\",\"0.9\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.2\",\"1.2\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"0.9\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.8\",\"1.1\",\"1.0\",\"0.9\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"0.9\",\"0.8\",\"0.9\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"1.2\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"0.9\",\"0.8\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"1.1\",\"1.0\",\"1.0\",\"1.2\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"0.9\",\"1.1\",\"1.2\",\"1.1\",\"1.3\",\"1.2\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"0.8\",\"0.8\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.0\",\"0.9\",\"1.2\",\"1.1\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.1\",\"0.9\",\"1.0\",\"0.9\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.9\",\"0.9\",\"0.8\",\"0.9\"]},\"selected\":{\"id\":\"1345\"},\"selection_policy\":{\"id\":\"1344\"}},\"id\":\"1226\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"axis\":{\"id\":\"1018\"},\"coordinates\":null,\"dimension\":1,\"grid_line_alpha\":0.25,\"grid_line_color\":\"#E0E0E0\",\"group\":null,\"ticker\":null},\"id\":\"1021\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1165\",\"type\":\"HelpTool\"},{\"attributes\":{\"axis_label\":\"Fibrin (ug/mL)\",\"axis_label_standoff\":10,\"axis_label_text_color\":\"#E0E0E0\",\"axis_label_text_font\":\"Helvetica\",\"axis_label_text_font_size\":\"1.25em\",\"axis_label_text_font_style\":\"normal\",\"axis_line_alpha\":0,\"axis_line_color\":\"#E0E0E0\",\"coordinates\":null,\"formatter\":{\"id\":\"1287\"},\"group\":null,\"major_label_policy\":{\"id\":\"1288\"},\"major_label_text_color\":\"#E0E0E0\",\"major_label_text_font\":\"Helvetica\",\"major_label_text_font_size\":\"1.025em\",\"major_tick_line_alpha\":0,\"major_tick_line_color\":\"#E0E0E0\",\"minor_tick_line_alpha\":0,\"minor_tick_line_color\":\"#E0E0E0\",\"ticker\":{\"id\":\"1019\"}},\"id\":\"1018\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1161\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"1305\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1054\",\"type\":\"DataRange1d\"},{\"attributes\":{\"axis_label\":\"Troponin (pg/mL)\",\"axis_label_standoff\":10,\"axis_label_text_color\":\"#E0E0E0\",\"axis_label_text_font\":\"Helvetica\",\"axis_label_text_font_size\":\"1.25em\",\"axis_label_text_font_style\":\"normal\",\"axis_line_alpha\":0,\"axis_line_color\":\"#E0E0E0\",\"coordinates\":null,\"formatter\":{\"id\":\"1305\"},\"group\":null,\"major_label_policy\":{\"id\":\"1306\"},\"major_label_text_color\":\"#E0E0E0\",\"major_label_text_font\":\"Helvetica\",\"major_label_text_font_size\":\"1.025em\",\"major_tick_line_alpha\":0,\"major_tick_line_color\":\"#E0E0E0\",\"minor_tick_line_alpha\":0,\"minor_tick_line_color\":\"#E0E0E0\",\"ticker\":{\"id\":\"1157\"}},\"id\":\"1156\",\"type\":\"LinearAxis\"},{\"attributes\":{\"axis\":{\"id\":\"1156\"},\"coordinates\":null,\"dimension\":1,\"grid_line_alpha\":0.25,\"grid_line_color\":\"#E0E0E0\",\"group\":null,\"ticker\":null},\"id\":\"1159\",\"type\":\"Grid\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1226\"},\"glyph\":{\"id\":\"1227\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1229\"},\"nonselection_glyph\":{\"id\":\"1228\"},\"view\":{\"id\":\"1231\"}},\"id\":\"1230\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"axis\":{\"id\":\"1244\"},\"coordinates\":null,\"grid_line_alpha\":0.25,\"grid_line_color\":\"#E0E0E0\",\"group\":null,\"ticker\":null},\"id\":\"1247\",\"type\":\"Grid\"},{\"attributes\":{\"tools\":[{\"id\":\"1114\"},{\"id\":\"1115\"},{\"id\":\"1116\"},{\"id\":\"1117\"},{\"id\":\"1118\"},{\"id\":\"1119\"}]},\"id\":\"1121\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"1052\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1157\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"1117\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"1306\",\"type\":\"AllLabels\"},{\"attributes\":{\"source\":{\"id\":\"1226\"}},\"id\":\"1231\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.5},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.5},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1227\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1308\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1111\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"1309\",\"type\":\"AllLabels\"},{\"attributes\":{\"axis_label\":\"Ferritin (ug/L)\",\"axis_label_standoff\":10,\"axis_label_text_color\":\"#E0E0E0\",\"axis_label_text_font\":\"Helvetica\",\"axis_label_text_font_size\":\"1.25em\",\"axis_label_text_font_style\":\"normal\",\"axis_line_alpha\":0,\"axis_line_color\":\"#E0E0E0\",\"coordinates\":null,\"formatter\":{\"id\":\"1299\"},\"group\":null,\"major_label_policy\":{\"id\":\"1300\"},\"major_label_text_color\":\"#E0E0E0\",\"major_label_text_font\":\"Helvetica\",\"major_label_text_font_size\":\"1.025em\",\"major_tick_line_alpha\":0,\"major_tick_line_color\":\"#E0E0E0\",\"minor_tick_line_alpha\":0,\"minor_tick_line_color\":\"#E0E0E0\",\"ticker\":{\"id\":\"1111\"}},\"id\":\"1110\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1238\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1327\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Lactate dehydrogenase in Serum or Plasma\",\"text_color\":\"#E0E0E0\",\"text_font\":\"Helvetica\",\"text_font_size\":\"1.15em\"},\"id\":\"1234\",\"type\":\"Title\"},{\"attributes\":{\"axis\":{\"id\":\"1110\"},\"coordinates\":null,\"dimension\":1,\"grid_line_alpha\":0.25,\"grid_line_color\":\"#E0E0E0\",\"group\":null,\"ticker\":null},\"id\":\"1113\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1023\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"1328\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"1008\",\"type\":\"DataRange1d\"},{\"attributes\":{\"axis_label\":\"days\",\"axis_label_standoff\":10,\"axis_label_text_color\":\"#E0E0E0\",\"axis_label_text_font\":\"Helvetica\",\"axis_label_text_font_size\":\"1.25em\",\"axis_label_text_font_style\":\"normal\",\"axis_line_alpha\":0,\"axis_line_color\":\"#E0E0E0\",\"coordinates\":null,\"formatter\":{\"id\":\"1308\"},\"group\":null,\"major_label_policy\":{\"id\":\"1309\"},\"major_label_text_color\":\"#E0E0E0\",\"major_label_text_font\":\"Helvetica\",\"major_label_text_font_size\":\"1.025em\",\"major_tick_line_alpha\":0,\"major_tick_line_color\":\"#E0E0E0\",\"minor_tick_line_alpha\":0,\"minor_tick_line_color\":\"#E0E0E0\",\"ticker\":{\"id\":\"1153\"}},\"id\":\"1152\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1069\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"background_fill_color\":\"#20262B\",\"below\":[{\"id\":\"1014\"}],\"border_fill_color\":\"#15191C\",\"center\":[{\"id\":\"1017\"},{\"id\":\"1021\"}],\"left\":[{\"id\":\"1018\"}],\"outline_line_alpha\":0.25,\"outline_line_color\":\"#E0E0E0\",\"renderers\":[{\"id\":\"1040\"},{\"id\":\"1046\"}],\"title\":{\"id\":\"1004\"},\"toolbar\":{\"id\":\"1029\"},\"x_range\":{\"id\":\"1006\"},\"x_scale\":{\"id\":\"1010\"},\"y_range\":{\"id\":\"1008\"},\"y_scale\":{\"id\":\"1012\"}},\"id\":\"1003\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"1065\",\"type\":\"BasicTicker\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1137\",\"type\":\"Circle\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Fibrin D-dimer FEU in Platelet poor plasma\",\"text_color\":\"#E0E0E0\",\"text_font\":\"Helvetica\",\"text_font_size\":\"1.15em\"},\"id\":\"1004\",\"type\":\"Title\"},{\"attributes\":{\"axis_label\":\"Interleukin (pg/mL)\",\"axis_label_standoff\":10,\"axis_label_text_color\":\"#E0E0E0\",\"axis_label_text_font\":\"Helvetica\",\"axis_label_text_font_size\":\"1.25em\",\"axis_label_text_font_style\":\"normal\",\"axis_line_alpha\":0,\"axis_line_color\":\"#E0E0E0\",\"coordinates\":null,\"formatter\":{\"id\":\"1293\"},\"group\":null,\"major_label_policy\":{\"id\":\"1294\"},\"major_label_text_color\":\"#E0E0E0\",\"major_label_text_font\":\"Helvetica\",\"major_label_text_font_size\":\"1.025em\",\"major_tick_line_alpha\":0,\"major_tick_line_color\":\"#E0E0E0\",\"minor_tick_line_alpha\":0,\"minor_tick_line_color\":\"#E0E0E0\",\"ticker\":{\"id\":\"1065\"}},\"id\":\"1064\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1012\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1220\"},\"glyph\":{\"id\":\"1221\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1223\"},\"nonselection_glyph\":{\"id\":\"1222\"},\"view\":{\"id\":\"1225\"}},\"id\":\"1224\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.5},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.5},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1083\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1006\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1056\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"1342\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"1073\",\"type\":\"HelpTool\"},{\"attributes\":{\"axis\":{\"id\":\"1014\"},\"coordinates\":null,\"grid_line_alpha\":0.25,\"grid_line_color\":\"#E0E0E0\",\"group\":null,\"ticker\":null},\"id\":\"1017\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1343\",\"type\":\"Selection\"},{\"attributes\":{\"background_fill_color\":\"#20262B\",\"below\":[{\"id\":\"1244\"}],\"border_fill_color\":\"#15191C\",\"center\":[{\"id\":\"1247\"},{\"id\":\"1251\"}],\"left\":[{\"id\":\"1248\"}],\"outline_line_alpha\":0.25,\"outline_line_color\":\"#E0E0E0\",\"renderers\":[{\"id\":\"1270\"},{\"id\":\"1276\"}],\"title\":{\"id\":\"1234\"},\"toolbar\":{\"id\":\"1259\"},\"x_range\":{\"id\":\"1236\"},\"x_scale\":{\"id\":\"1240\"},\"y_range\":{\"id\":\"1238\"},\"y_scale\":{\"id\":\"1242\"}},\"id\":\"1233\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1085\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1084\",\"type\":\"Circle\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1082\"},\"glyph\":{\"id\":\"1083\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1085\"},\"nonselection_glyph\":{\"id\":\"1084\"},\"view\":{\"id\":\"1087\"}},\"id\":\"1086\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1236\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.5},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.5},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1135\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1253\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"data\":{\"x\":[2,4,6,8,9,10,11,12,13,14,15,16,17,2,5,7,9,10,11,12,13,14,15,16,17,18,19],\"y\":[\"9.1\",\"10.6\",\"11.5\",\"11.8\",\"11.9\",\"11.7\",\"9.6\",\"9.0\",\"12.9\",\"15.3\",\"15.0\",\"18.9\",\"27.8\",\"8.9\",\"10.9\",\"13.6\",\"13.5\",\"8.3\",\"10.2\",\"10.0\",\"9.4\",\"9.7\",\"17.6\",\"18.5\",\"16.3\",\"27.8\",\"29.5\"]},\"selected\":{\"id\":\"1328\"},\"selection_policy\":{\"id\":\"1327\"}},\"id\":\"1082\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"axis_label\":\"Lactate (U/L)\",\"axis_label_standoff\":10,\"axis_label_text_color\":\"#E0E0E0\",\"axis_label_text_font\":\"Helvetica\",\"axis_label_text_font_size\":\"1.25em\",\"axis_label_text_font_style\":\"normal\",\"axis_line_alpha\":0,\"axis_line_color\":\"#E0E0E0\",\"coordinates\":null,\"formatter\":{\"id\":\"1317\"},\"group\":null,\"major_label_policy\":{\"id\":\"1318\"},\"major_label_text_color\":\"#E0E0E0\",\"major_label_text_font\":\"Helvetica\",\"major_label_text_font_size\":\"1.025em\",\"major_tick_line_alpha\":0,\"major_tick_line_color\":\"#E0E0E0\",\"minor_tick_line_alpha\":0,\"minor_tick_line_color\":\"#E0E0E0\",\"ticker\":{\"id\":\"1249\"}},\"id\":\"1248\",\"type\":\"LinearAxis\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"1074\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"1015\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis\":{\"id\":\"1248\"},\"coordinates\":null,\"dimension\":1,\"grid_line_alpha\":0.25,\"grid_line_color\":\"#E0E0E0\",\"group\":null,\"ticker\":null},\"id\":\"1251\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1329\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"1071\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"1249\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"1010\",\"type\":\"LinearScale\"},{\"attributes\":{\"source\":{\"id\":\"1174\"}},\"id\":\"1179\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"1330\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.5},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.5},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1175\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1098\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1257\",\"type\":\"HelpTool\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1174\"},\"glyph\":{\"id\":\"1175\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1177\"},\"nonselection_glyph\":{\"id\":\"1176\"},\"view\":{\"id\":\"1179\"}},\"id\":\"1178\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1287\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1252\",\"type\":\"PanTool\"},{\"attributes\":{\"source\":{\"id\":\"1082\"}},\"id\":\"1087\",\"type\":\"CDSView\"},{\"attributes\":{\"overlay\":{\"id\":\"1258\"}},\"id\":\"1254\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"data\":{\"x\":[0,2,4,6,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,0,2,4,5,6,7,8,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,0,2,4,0,2,4,6,8,0,2,4,6,8,9,10,11,12,0,2,4,5,6,7,8,0,2,4,5,6,7,8,9,10,0,2,4,5,6,7,8,9,10,0,2,4,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,0,2,4,5,6,7,8,9,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,0,2,4,6,8,9,10,11,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,0,2,4,6,0,2,4,6,8,0,2,4,6,7,8,9,10,0,2,4,0,2,4,5,6,7,8,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,0,2,4,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,5,6,7,0,2,4,6,0,2,4,5,6,7,8,9,10,11,12,13,14,5,7,9,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,8,0,2,4,6,7,8,9,10,11,0,2,4,6,0,2,4,5,6,7,8,9,10,11,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,0,2,4,0,2,4,7,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,0,2,4,5,6,7,8,9,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,0,2,4,5,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,7,8,9,10,0,2,4,6,7,8,9,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,7,8,9,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,5,6,7,8,9,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,5,7,9,11,12,13,14,15,16,17,18,19,20,0,2,4,5,6,7,8,9,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,7,8,9,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,0,2,4,6,0,2,4,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,0,2,4,5,6,7,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,0,2,4,0,2,4,6,7,8,9,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,3,5,7,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,0,2,4,0,2,4,6,8,9,10,11,12,0,2,4,5,6,7,8,9,0,2,4,6,7,8,9,10,11,7,9,11,13,14,15,16,17,18,19,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,9,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,5,7,9,10,11,12,13,0,2,4,6,0,2,5,7,9,10,11,12,13,14,15,16,17,18,19,0,2,4,5,6,7,8,9,10,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,9,10,11,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,0,2,4,6,8,9,10,11,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,0,2,4,6,8,9,10,11,12,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,0,2,4,5,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,0,2,4,5,6,7,8,9,10,11,5,7,9,0,2,4,6,7,8,9,10,0,2,4,6,8,0,2,4,5,6,7,0,2,4,6,8,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,0,2,0,2,4,6,0,2,4,5,6,7,8,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,9,10,11,0,2,4,6,8,0,2,4,0,2,4,5,6,7,8,9,0,2,4,5,6,7,8,7,9,11,12,13,14,15,16,17,0,2,4,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,0,2,4,6,7,8,9,10,0,2,4,6,8,9,10,11,13,14,15,16,17,0,2,4,5,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,0,2,4,6,8,9,10,11,12,13,14,0,2,4,5,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,0,2,4,6,8,9,10,11,12,13,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,0,2,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,0,2,4,5,6,7,0,2,4,5,6,7,8,9,10,11,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,7,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,0,2,4,6,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,5,6,7,8,9,10,11,12,0,2,4,5,6,7,8,9,10,11,12,13,0,3,5,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,0,3,5,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,0,2,4,6,8,6,8,10,12,14,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,0,2,4,0,2,4,0,2,4,5,6,7,8,9,0,2,4,6,8,9,10,11,12,13,0,2,4,0,2,4,5,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,7,8,9,10,0,2,4,5,6,7,8,5,7,0,2,0,2,4,6,7,8,9,10,11,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,5,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,6,8,10,12,14,5,7,9,11,7,9,11,13,14,15,16,17,18,19,20,21,22,23,0,2,4,5,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,7,8,9,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,0,2,4,5,6,7,8,9,0,2,4,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,5,6,7,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,0,2,4,6,8,0,2,5,6,7,8,9,0,2,4,6,8,9,10,11,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,0,2,4,5,6,7,8,9,10,11,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,0,2,4,6,7,8,9,10,11,0,2,4,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14],\"y\":[\"6.3\",\"7.1\",\"7.6\",\"23.8\",\"8.1\",\"8.5\",\"6.3\",\"6.8\",\"7.8\",\"9.0\",\"22.8\",\"25.7\",\"22.3\",\"22.3\",\"53.9\",\"57.8\",\"59.5\",\"58.5\",\"63.5\",\"61.9\",\"273.6\",\"7.8\",\"7.1\",\"6.1\",\"25.5\",\"25.0\",\"24.6\",\"20.4\",\"7.1\",\"6.3\",\"7.2\",\"25.4\",\"25.7\",\"23.7\",\"22.5\",\"7.6\",\"8.7\",\"7.5\",\"24.6\",\"22.3\",\"23.8\",\"23.9\",\"22.4\",\"22.1\",\"56.3\",\"54.6\",\"2.5\",\"2.3\",\"3.3\",\"3.1\",\"4.0\",\"8.8\",\"7.7\",\"7.8\",\"22.8\",\"24.8\",\"21.8\",\"23.7\",\"20.1\",\"51.3\",\"57.5\",\"56.7\",\"65.0\",\"57.3\",\"55.8\",\"322.3\",\"8.7\",\"10.0\",\"7.5\",\"23.6\",\"23.3\",\"22.7\",\"22.8\",\"23.7\",\"22.1\",\"57.8\",\"52.9\",\"51.0\",\"55.7\",\"6.5\",\"8.7\",\"8.2\",\"24.7\",\"22.7\",\"22.5\",\"20.3\",\"55.4\",\"58.3\",\"8.3\",\"8.8\",\"8.7\",\"23.5\",\"22.6\",\"23.8\",\"22.7\",\"22.7\",\"53.2\",\"56.6\",\"58.1\",\"6.9\",\"6.9\",\"6.0\",\"25.5\",\"24.8\",\"6.3\",\"8.3\",\"7.6\",\"7.7\",\"8.6\",\"8.2\",\"25.2\",\"25.5\",\"22.0\",\"20.9\",\"56.6\",\"52.4\",\"59.5\",\"60.1\",\"57.9\",\"60.9\",\"6.1\",\"9.8\",\"7.5\",\"23.5\",\"23.0\",\"22.1\",\"21.2\",\"20.2\",\"52.9\",\"59.3\",\"57.1\",\"62.4\",\"55.8\",\"63.8\",\"8.4\",\"7.4\",\"7.0\",\"25.3\",\"22.7\",\"22.0\",\"21.0\",\"57.9\",\"52.5\",\"9.6\",\"7.3\",\"9.6\",\"6.6\",\"9.0\",\"6.4\",\"24.7\",\"25.5\",\"8.2\",\"6.7\",\"9.3\",\"25.1\",\"24.0\",\"22.0\",\"20.2\",\"54.6\",\"50.0\",\"9.2\",\"9.3\",\"9.1\",\"22.6\",\"24.3\",\"23.6\",\"23.2\",\"6.0\",\"9.8\",\"6.3\",\"22.5\",\"22.8\",\"25.3\",\"22.9\",\"21.8\",\"22.9\",\"6.9\",\"7.9\",\"7.1\",\"22.3\",\"24.2\",\"23.6\",\"21.1\",\"23.9\",\"21.1\",\"6.1\",\"9.8\",\"9.2\",\"24.3\",\"26.0\",\"22.2\",\"21.7\",\"23.2\",\"6.1\",\"7.8\",\"8.4\",\"23.1\",\"24.4\",\"21.4\",\"22.5\",\"23.2\",\"51.7\",\"53.3\",\"10.0\",\"9.3\",\"7.1\",\"23.8\",\"24.0\",\"22.4\",\"23.3\",\"21.1\",\"7.8\",\"7.8\",\"7.0\",\"22.9\",\"22.7\",\"22.7\",\"23.9\",\"52.5\",\"55.0\",\"59.6\",\"57.5\",\"55.8\",\"9.9\",\"6.6\",\"7.8\",\"24.4\",\"24.3\",\"20.7\",\"23.9\",\"20.2\",\"56.6\",\"53.4\",\"9.0\",\"6.7\",\"6.4\",\"22.5\",\"23.6\",\"23.7\",\"22.5\",\"21.3\",\"58.7\",\"58.3\",\"9.7\",\"9.4\",\"7.5\",\"24.4\",\"23.1\",\"21.9\",\"23.0\",\"54.5\",\"6.1\",\"9.9\",\"6.7\",\"25.8\",\"22.3\",\"22.0\",\"23.6\",\"53.6\",\"9.9\",\"8.8\",\"10.0\",\"22.8\",\"24.7\",\"6.4\",\"6.7\",\"8.4\",\"23.9\",\"23.1\",\"23.4\",\"22.3\",\"58.8\",\"57.3\",\"55.2\",\"56.4\",\"63.9\",\"61.7\",\"7.0\",\"8.9\",\"9.1\",\"23.0\",\"24.9\",\"23.1\",\"21.7\",\"21.2\",\"7.4\",\"6.3\",\"9.8\",\"23.1\",\"9.6\",\"9.7\",\"7.5\",\"22.4\",\"22.7\",\"8.1\",\"6.6\",\"8.3\",\"24.2\",\"23.9\",\"22.5\",\"22.0\",\"22.2\",\"9.5\",\"9.9\",\"9.4\",\"9.9\",\"9.4\",\"8.9\",\"24.4\",\"22.3\",\"25.7\",\"22.5\",\"7.7\",\"9.7\",\"8.1\",\"25.7\",\"23.1\",\"22.9\",\"23.3\",\"50.8\",\"59.4\",\"55.5\",\"64.5\",\"62.1\",\"62.4\",\"274.4\",\"317.7\",\"323.4\",\"8.2\",\"6.5\",\"9.6\",\"23.2\",\"24.1\",\"20.3\",\"20.9\",\"23.3\",\"59.5\",\"57.0\",\"57.5\",\"64.5\",\"64.8\",\"55.6\",\"6.9\",\"6.8\",\"6.1\",\"22.2\",\"25.5\",\"22.8\",\"23.0\",\"20.1\",\"8.1\",\"8.8\",\"9.3\",\"23.1\",\"22.5\",\"20.2\",\"21.1\",\"57.1\",\"55.3\",\"55.9\",\"64.0\",\"8.0\",\"6.2\",\"9.3\",\"22.3\",\"24.2\",\"21.1\",\"22.0\",\"58.5\",\"52.6\",\"58.0\",\"56.8\",\"56.5\",\"58.2\",\"317.6\",\"6.0\",\"9.0\",\"7.9\",\"22.3\",\"24.6\",\"24.0\",\"20.4\",\"52.7\",\"8.9\",\"6.8\",\"10.0\",\"25.6\",\"24.7\",\"21.6\",\"20.9\",\"22.9\",\"52.6\",\"8.2\",\"7.0\",\"9.4\",\"23.2\",\"24.7\",\"20.9\",\"21.1\",\"60.0\",\"55.2\",\"54.3\",\"56.6\",\"63.7\",\"58.8\",\"6.5\",\"9.6\",\"7.0\",\"23.0\",\"7.5\",\"8.7\",\"7.6\",\"23.2\",\"25.6\",\"20.1\",\"21.6\",\"54.0\",\"53.2\",\"55.2\",\"63.1\",\"61.9\",\"62.9\",\"337.1\",\"299.8\",\"7.2\",\"6.2\",\"9.1\",\"25.4\",\"24.4\",\"24.0\",\"7.9\",\"9.9\",\"7.4\",\"24.3\",\"7.4\",\"6.6\",\"6.2\",\"22.8\",\"25.3\",\"24.8\",\"21.6\",\"21.1\",\"20.9\",\"50.8\",\"55.8\",\"59.1\",\"60.6\",\"8.0\",\"8.2\",\"9.6\",\"6.5\",\"8.2\",\"7.9\",\"24.1\",\"23.3\",\"21.9\",\"22.7\",\"22.0\",\"56.0\",\"53.9\",\"51.4\",\"58.9\",\"59.1\",\"61.8\",\"7.1\",\"9.3\",\"7.0\",\"22.3\",\"25.9\",\"21.0\",\"23.7\",\"21.8\",\"58.9\",\"57.5\",\"53.4\",\"62.5\",\"9.7\",\"8.2\",\"8.5\",\"24.7\",\"25.4\",\"7.5\",\"7.2\",\"7.0\",\"25.2\",\"26.0\",\"23.7\",\"20.7\",\"23.8\",\"54.5\",\"6.6\",\"7.7\",\"6.4\",\"24.0\",\"8.9\",\"7.0\",\"9.6\",\"22.7\",\"24.3\",\"24.6\",\"23.8\",\"21.6\",\"22.4\",\"53.2\",\"6.3\",\"7.4\",\"8.9\",\"25.6\",\"22.3\",\"25.4\",\"21.7\",\"20.7\",\"20.7\",\"52.1\",\"59.3\",\"6.7\",\"8.8\",\"7.6\",\"22.4\",\"24.8\",\"22.9\",\"20.0\",\"58.3\",\"53.2\",\"54.0\",\"57.8\",\"56.8\",\"6.3\",\"9.0\",\"6.6\",\"22.7\",\"7.3\",\"8.0\",\"8.5\",\"6.4\",\"7.1\",\"9.7\",\"25.0\",\"7.3\",\"7.7\",\"6.6\",\"22.6\",\"24.8\",\"20.9\",\"23.4\",\"51.6\",\"55.3\",\"50.8\",\"61.4\",\"57.9\",\"57.0\",\"334.6\",\"304.6\",\"8.2\",\"8.1\",\"8.4\",\"24.1\",\"23.4\",\"6.6\",\"7.1\",\"6.6\",\"24.5\",\"25.3\",\"25.7\",\"21.7\",\"20.4\",\"9.3\",\"8.1\",\"6.7\",\"23.0\",\"25.1\",\"21.1\",\"22.9\",\"23.1\",\"51.4\",\"57.2\",\"6.1\",\"6.4\",\"8.1\",\"24.9\",\"25.7\",\"23.3\",\"20.7\",\"22.9\",\"54.1\",\"9.0\",\"6.2\",\"8.0\",\"25.9\",\"7.6\",\"8.6\",\"9.3\",\"24.3\",\"24.7\",\"22.0\",\"20.3\",\"54.8\",\"50.2\",\"53.3\",\"55.8\",\"60.0\",\"64.4\",\"275.5\",\"7.0\",\"9.3\",\"7.1\",\"25.6\",\"23.2\",\"20.4\",\"20.9\",\"21.5\",\"8.1\",\"9.2\",\"9.7\",\"26.0\",\"22.6\",\"20.8\",\"20.3\",\"20.7\",\"3.2\",\"2.4\",\"2.4\",\"2.8\",\"3.1\",\"4.7\",\"4.9\",\"4.3\",\"2.3\",\"2.1\",\"2.5\",\"3.3\",\"3.8\",\"3.9\",\"9.0\",\"6.2\",\"7.9\",\"23.3\",\"24.3\",\"22.6\",\"20.5\",\"60.0\",\"56.8\",\"51.5\",\"9.5\",\"7.4\",\"8.8\",\"25.8\",\"25.7\",\"21.2\",\"22.8\",\"22.6\",\"52.7\",\"56.7\",\"53.7\",\"59.2\",\"62.8\",\"60.4\",\"280.0\",\"8.0\",\"6.7\",\"7.8\",\"22.2\",\"22.0\",\"20.4\",\"21.3\",\"51.3\",\"56.2\",\"57.9\",\"59.6\",\"63.0\",\"7.1\",\"7.7\",\"8.4\",\"23.1\",\"23.8\",\"8.4\",\"8.0\",\"8.5\",\"24.0\",\"22.9\",\"23.6\",\"20.8\",\"7.6\",\"7.1\",\"8.0\",\"23.5\",\"26.0\",\"22.5\",\"21.4\",\"21.3\",\"21.0\",\"52.9\",\"56.6\",\"7.4\",\"6.3\",\"6.0\",\"24.6\",\"25.9\",\"23.6\",\"20.7\",\"23.5\",\"8.5\",\"7.0\",\"6.8\",\"25.5\",\"24.8\",\"20.8\",\"20.3\",\"22.7\",\"54.7\",\"56.2\",\"52.3\",\"62.9\",\"7.6\",\"6.5\",\"8.4\",\"23.9\",\"25.3\",\"21.6\",\"20.7\",\"23.4\",\"58.5\",\"57.9\",\"59.0\",\"64.5\",\"7.6\",\"7.1\",\"9.2\",\"22.1\",\"23.6\",\"23.0\",\"22.0\",\"22.2\",\"57.7\",\"58.7\",\"8.4\",\"8.3\",\"6.5\",\"24.4\",\"9.2\",\"8.5\",\"7.8\",\"24.1\",\"24.9\",\"22.8\",\"21.8\",\"51.3\",\"51.3\",\"52.6\",\"63.4\",\"64.4\",\"7.0\",\"9.8\",\"9.7\",\"25.8\",\"25.3\",\"24.5\",\"22.5\",\"21.5\",\"6.2\",\"8.2\",\"8.7\",\"23.6\",\"22.5\",\"25.6\",\"20.1\",\"23.2\",\"20.4\",\"59.5\",\"51.5\",\"58.3\",\"60.0\",\"9.0\",\"9.9\",\"6.4\",\"22.8\",\"22.5\",\"20.6\",\"23.3\",\"57.1\",\"53.0\",\"57.4\",\"57.6\",\"64.1\",\"60.4\",\"283.5\",\"2.5\",\"3.0\",\"2.1\",\"3.9\",\"3.8\",\"4.8\",\"4.6\",\"8.5\",\"6.9\",\"7.5\",\"25.2\",\"6.6\",\"6.9\",\"7.7\",\"23.1\",\"25.5\",\"21.5\",\"21.6\",\"22.2\",\"51.0\",\"50.3\",\"51.8\",\"61.8\",\"56.5\",\"8.9\",\"7.6\",\"7.8\",\"25.3\",\"22.4\",\"22.4\",\"20.5\",\"21.9\",\"54.5\",\"51.5\",\"57.9\",\"60.2\",\"60.1\",\"7.9\",\"9.3\",\"6.3\",\"23.5\",\"25.2\",\"8.2\",\"6.6\",\"9.6\",\"25.4\",\"24.2\",\"21.8\",\"21.6\",\"24.0\",\"59.8\",\"54.2\",\"57.7\",\"58.2\",\"62.4\",\"9.7\",\"7.4\",\"8.0\",\"23.3\",\"22.1\",\"24.8\",\"20.9\",\"20.7\",\"8.7\",\"6.0\",\"6.3\",\"25.2\",\"8.6\",\"9.7\",\"7.5\",\"23.4\",\"22.6\",\"20.4\",\"22.4\",\"50.4\",\"56.1\",\"52.3\",\"61.5\",\"56.8\",\"58.3\",\"6.1\",\"9.0\",\"7.6\",\"25.6\",\"22.7\",\"21.2\",\"23.0\",\"56.9\",\"58.8\",\"56.7\",\"61.0\",\"60.4\",\"8.3\",\"6.0\",\"7.7\",\"23.6\",\"25.4\",\"22.5\",\"21.4\",\"52.7\",\"57.9\",\"52.6\",\"63.4\",\"58.1\",\"9.7\",\"6.8\",\"7.7\",\"24.0\",\"22.6\",\"9.0\",\"8.2\",\"7.9\",\"22.6\",\"22.1\",\"23.9\",\"21.0\",\"20.1\",\"56.4\",\"54.6\",\"55.0\",\"55.4\",\"55.6\",\"62.9\",\"9.4\",\"6.6\",\"8.7\",\"24.0\",\"24.6\",\"22.5\",\"20.6\",\"57.1\",\"55.4\",\"55.6\",\"55.2\",\"58.2\",\"9.9\",\"8.0\",\"8.0\",\"23.5\",\"22.6\",\"21.5\",\"20.9\",\"53.0\",\"52.9\",\"56.1\",\"58.1\",\"61.4\",\"57.6\",\"293.9\",\"8.8\",\"8.1\",\"6.4\",\"8.8\",\"6.9\",\"9.1\",\"9.2\",\"8.4\",\"9.7\",\"22.8\",\"23.9\",\"23.2\",\"21.3\",\"59.1\",\"57.0\",\"56.4\",\"58.0\",\"9.9\",\"8.8\",\"8.6\",\"24.5\",\"24.2\",\"23.9\",\"23.2\",\"7.1\",\"8.4\",\"7.9\",\"22.2\",\"22.3\",\"21.8\",\"23.7\",\"57.8\",\"50.9\",\"59.6\",\"63.3\",\"63.9\",\"58.9\",\"327.7\",\"303.4\",\"9.6\",\"8.8\",\"9.0\",\"25.9\",\"24.5\",\"20.4\",\"22.2\",\"52.4\",\"50.1\",\"59.8\",\"64.3\",\"55.9\",\"56.4\",\"315.5\",\"7.3\",\"7.2\",\"8.5\",\"23.5\",\"23.3\",\"9.1\",\"8.5\",\"9.3\",\"24.6\",\"25.0\",\"20.0\",\"22.5\",\"20.4\",\"54.0\",\"59.4\",\"53.3\",\"59.1\",\"59.7\",\"57.9\",\"8.3\",\"6.8\",\"6.8\",\"25.0\",\"24.1\",\"21.3\",\"21.1\",\"21.6\",\"55.3\",\"55.8\",\"8.4\",\"9.4\",\"6.6\",\"23.4\",\"25.9\",\"21.5\",\"20.1\",\"56.0\",\"57.3\",\"52.6\",\"8.4\",\"8.7\",\"9.9\",\"24.4\",\"25.2\",\"7.8\",\"7.4\",\"7.1\",\"22.1\",\"24.6\",\"23.6\",\"20.7\",\"58.7\",\"55.3\",\"55.7\",\"9.9\",\"8.0\",\"7.9\",\"22.6\",\"6.6\",\"7.0\",\"7.9\",\"22.3\",\"24.5\",\"22.9\",\"23.4\",\"21.3\",\"58.1\",\"56.3\",\"58.1\",\"6.5\",\"9.6\",\"6.7\",\"22.5\",\"25.2\",\"9.0\",\"6.3\",\"7.2\",\"23.7\",\"24.7\",\"20.1\",\"21.4\",\"53.3\",\"58.6\",\"6.3\",\"8.6\",\"8.8\",\"26.0\",\"22.2\",\"7.6\",\"6.2\",\"9.6\",\"23.3\",\"24.1\",\"20.0\",\"22.9\",\"59.0\",\"58.3\",\"55.8\",\"55.9\",\"62.3\",\"8.6\",\"6.3\",\"8.0\",\"6.6\",\"8.3\",\"9.2\",\"25.1\",\"7.1\",\"7.4\",\"8.2\",\"7.0\",\"8.3\",\"8.7\",\"25.2\",\"24.5\",\"21.5\",\"22.2\",\"20.1\",\"54.8\",\"57.0\",\"51.7\",\"7.8\",\"7.0\",\"7.1\",\"25.3\",\"25.3\",\"20.1\",\"20.9\",\"22.9\",\"54.2\",\"55.6\",\"6.7\",\"9.5\",\"9.3\",\"25.9\",\"22.7\",\"23.8\",\"23.5\",\"6.5\",\"6.3\",\"8.7\",\"25.2\",\"23.6\",\"22.3\",\"23.6\",\"20.5\",\"59.4\",\"50.3\",\"57.4\",\"60.2\",\"64.4\",\"59.9\",\"280.2\",\"7.1\",\"8.9\",\"7.6\",\"22.1\",\"25.7\",\"23.3\",\"21.2\",\"22.7\",\"60.0\",\"56.2\",\"55.8\",\"58.9\",\"59.7\",\"8.0\",\"6.6\",\"9.5\",\"24.3\",\"23.7\",\"21.8\",\"22.2\",\"53.4\",\"54.9\",\"55.8\",\"56.4\",\"55.5\",\"6.3\",\"7.5\",\"9.6\",\"23.9\",\"23.6\",\"20.6\",\"21.4\",\"6.3\",\"8.1\",\"7.1\",\"25.9\",\"22.7\",\"23.1\",\"22.2\",\"57.6\",\"54.2\",\"54.9\",\"59.3\",\"61.9\",\"10.0\",\"6.0\",\"9.1\",\"23.2\",\"24.5\",\"22.4\",\"23.2\",\"21.0\",\"53.9\",\"7.1\",\"8.4\",\"7.5\",\"24.5\",\"25.8\",\"24.6\",\"21.4\",\"20.2\",\"22.3\",\"57.6\",\"53.6\",\"57.0\",\"64.5\",\"8.9\",\"9.9\",\"8.2\",\"9.7\",\"9.7\",\"6.1\",\"7.6\",\"9.1\",\"7.4\",\"24.3\",\"24.1\",\"23.8\",\"21.9\",\"7.9\",\"9.9\",\"6.7\",\"8.6\",\"8.5\",\"6.1\",\"23.9\",\"22.7\",\"21.4\",\"20.0\",\"55.1\",\"58.3\",\"53.1\",\"60.0\",\"62.2\",\"7.0\",\"7.3\",\"6.9\",\"8.0\",\"6.7\",\"7.2\",\"24.3\",\"25.3\",\"20.4\",\"22.0\",\"55.9\",\"53.5\",\"56.0\",\"59.0\",\"59.2\",\"60.8\",\"293.6\",\"6.4\",\"9.2\",\"6.6\",\"22.3\",\"25.6\",\"21.6\",\"23.5\",\"50.8\",\"58.7\",\"58.2\",\"58.7\",\"56.8\",\"62.6\",\"314.6\",\"9.5\",\"6.1\",\"7.1\",\"23.3\",\"7.2\",\"9.1\",\"7.7\",\"25.6\",\"23.7\",\"22.8\",\"20.1\",\"58.1\",\"50.1\",\"58.7\",\"61.7\",\"55.5\",\"59.8\",\"6.6\",\"9.8\",\"9.1\",\"25.2\",\"25.4\",\"23.7\",\"23.3\",\"21.0\",\"55.4\",\"54.7\",\"53.1\",\"8.4\",\"7.9\",\"7.7\",\"25.7\",\"22.2\",\"23.1\",\"20.4\",\"51.4\",\"51.6\",\"52.5\",\"8.7\",\"8.6\",\"6.0\",\"6.3\",\"7.6\",\"7.3\",\"23.3\",\"24.5\",\"21.4\",\"23.0\",\"54.9\",\"59.4\",\"6.5\",\"6.2\",\"6.7\",\"23.2\",\"25.4\",\"23.0\",\"20.8\",\"23.4\",\"8.2\",\"6.3\",\"6.5\",\"25.8\",\"23.5\",\"21.3\",\"21.4\",\"22.3\",\"54.8\",\"6.8\",\"8.7\",\"6.8\",\"23.0\",\"22.3\",\"20.8\",\"22.7\",\"23.4\",\"55.4\",\"53.3\",\"6.6\",\"6.8\",\"9.3\",\"23.1\",\"24.6\",\"22.2\",\"23.3\",\"23.2\",\"23.2\",\"55.3\",\"50.0\",\"9.0\",\"6.2\",\"8.9\",\"22.6\",\"24.3\",\"9.8\",\"6.1\",\"8.8\",\"24.6\",\"22.3\",\"20.1\",\"21.3\",\"51.2\",\"57.1\",\"58.9\",\"58.5\",\"63.6\",\"60.6\",\"311.8\",\"299.6\",\"7.0\",\"6.3\",\"9.6\",\"24.4\",\"24.0\",\"22.0\",\"22.7\",\"20.8\",\"54.9\",\"58.0\",\"8.8\",\"9.0\",\"8.3\",\"25.5\",\"23.3\",\"21.7\",\"20.4\",\"22.4\",\"50.7\",\"50.8\",\"57.0\",\"61.9\",\"59.4\",\"7.1\",\"6.4\",\"6.6\",\"24.2\",\"7.4\",\"8.8\",\"6.7\",\"23.3\",\"24.7\",\"22.2\",\"22.1\",\"23.3\",\"52.5\",\"55.6\",\"59.8\",\"6.7\",\"6.9\",\"8.8\",\"23.9\",\"9.6\",\"8.1\",\"8.8\",\"24.2\",\"24.4\",\"23.6\",\"23.6\",\"21.1\",\"51.5\",\"55.8\",\"52.2\",\"2.7\",\"3.3\",\"2.7\",\"2.7\",\"3.3\",\"8.1\",\"7.1\",\"6.8\",\"23.1\",\"23.2\",\"8.3\",\"9.8\",\"6.5\",\"22.8\",\"24.6\",\"23.8\",\"20.1\",\"57.9\",\"50.9\",\"55.6\",\"61.3\",\"57.2\",\"57.0\",\"6.6\",\"6.6\",\"7.9\",\"9.8\",\"9.3\",\"7.1\",\"22.8\",\"24.3\",\"8.4\",\"7.2\",\"7.4\",\"22.4\",\"25.9\",\"20.1\",\"22.5\",\"21.1\",\"54.7\",\"59.8\",\"57.7\",\"7.6\",\"9.0\",\"9.1\",\"23.5\",\"25.9\",\"21.2\",\"22.0\",\"20.2\",\"57.5\",\"55.6\",\"58.3\",\"60.5\",\"61.0\",\"59.4\",\"338.7\",\"9.3\",\"7.9\",\"7.6\",\"24.3\",\"22.4\",\"20.4\",\"22.8\",\"56.6\",\"59.4\",\"52.6\",\"56.6\",\"59.0\",\"62.8\",\"295.7\",\"7.2\",\"6.1\",\"8.6\",\"23.6\",\"23.8\",\"22.2\",\"21.6\",\"51.1\",\"52.8\",\"51.7\",\"56.6\",\"60.0\",\"60.1\",\"253.5\",\"285.3\",\"279.6\",\"7.6\",\"9.9\",\"8.1\",\"22.3\",\"25.2\",\"22.2\",\"23.1\",\"20.7\",\"54.0\",\"59.8\",\"59.7\",\"7.6\",\"8.3\",\"6.8\",\"23.0\",\"26.0\",\"21.7\",\"23.4\",\"50.4\",\"59.1\",\"50.4\",\"63.3\",\"56.0\",\"57.4\",\"277.6\",\"8.5\",\"8.2\",\"9.8\",\"22.1\",\"22.2\",\"24.9\",\"21.1\",\"23.0\",\"22.3\",\"53.6\",\"54.2\",\"51.5\",\"62.8\",\"8.6\",\"7.9\",\"6.4\",\"23.3\",\"25.5\",\"22.0\",\"20.6\",\"57.6\",\"57.9\",\"50.1\",\"59.4\",\"61.8\",\"61.4\",\"314.4\",\"266.3\",\"7.7\",\"9.3\",\"6.8\",\"22.7\",\"23.9\",\"22.4\",\"20.5\",\"6.1\",\"7.9\",\"8.8\",\"26.0\",\"7.7\",\"9.6\",\"7.2\",\"22.5\",\"23.5\",\"20.8\",\"21.2\",\"54.5\",\"58.8\",\"57.2\",\"57.5\",\"56.0\",\"55.3\",\"266.2\",\"258.2\",\"8.2\",\"9.9\",\"6.1\",\"24.7\",\"25.6\",\"25.8\",\"21.5\",\"22.3\",\"22.0\",\"7.8\",\"8.2\",\"6.8\",\"25.5\",\"22.8\",\"23.3\",\"22.2\",\"21.8\",\"58.0\",\"51.2\",\"52.9\",\"58.2\",\"62.4\",\"7.8\",\"9.6\",\"7.6\",\"22.2\",\"24.6\",\"8.0\",\"6.2\",\"8.4\",\"24.6\",\"24.3\",\"20.2\",\"20.7\",\"58.7\",\"8.4\",\"8.0\",\"6.1\",\"24.4\",\"22.8\",\"23.9\",\"20.8\",\"23.4\",\"23.6\",\"54.9\",\"56.0\",\"50.1\",\"9.0\",\"8.0\",\"6.8\",\"23.8\",\"22.3\",\"20.7\",\"20.5\",\"55.8\",\"51.9\",\"51.3\",\"56.9\",\"64.5\",\"56.2\",\"285.2\",\"9.0\",\"6.8\",\"6.5\",\"23.6\",\"6.8\",\"8.4\",\"6.2\",\"22.9\",\"25.2\",\"21.6\",\"22.9\",\"56.4\",\"54.3\",\"55.4\",\"59.2\",\"7.3\",\"7.4\",\"6.5\",\"23.6\",\"7.4\",\"8.8\",\"8.7\",\"22.3\",\"25.3\",\"21.2\",\"20.2\",\"50.3\",\"6.3\",\"8.4\",\"6.7\",\"24.9\",\"25.4\",\"21.4\",\"23.9\",\"23.9\",\"56.8\",\"50.4\",\"58.9\",\"55.9\",\"56.5\",\"8.2\",\"9.6\",\"7.6\",\"22.8\",\"23.6\",\"21.9\",\"22.8\",\"54.7\",\"7.8\",\"9.2\",\"9.1\",\"24.1\",\"23.5\",\"8.8\",\"8.9\",\"6.6\",\"9.1\",\"7.0\",\"8.1\",\"23.3\",\"24.3\",\"22.0\",\"22.9\",\"54.6\",\"52.2\",\"9.5\",\"6.9\",\"8.4\",\"24.8\",\"24.7\",\"24.3\",\"23.3\",\"23.8\",\"21.0\",\"59.8\",\"55.5\",\"55.9\",\"64.7\",\"6.6\",\"9.2\",\"6.6\",\"23.4\",\"6.5\",\"9.3\",\"9.1\",\"23.5\",\"9.6\",\"7.7\",\"7.5\",\"22.1\",\"23.4\",\"20.8\",\"22.9\",\"23.4\",\"55.8\",\"55.9\",\"52.7\",\"60.1\",\"57.8\",\"9.7\",\"9.9\",\"9.4\",\"7.9\",\"8.7\",\"7.4\",\"24.6\",\"24.1\",\"23.0\",\"22.4\",\"23.1\",\"23.4\",\"6.8\",\"6.3\",\"7.0\",\"25.2\",\"23.3\",\"23.0\",\"20.9\",\"20.7\",\"58.8\",\"56.9\",\"55.7\",\"6.3\",\"9.8\",\"9.7\",\"25.2\",\"24.3\",\"20.8\",\"23.6\",\"52.9\",\"58.8\",\"52.1\",\"56.4\",\"63.2\",\"55.9\",\"321.1\",\"328.0\",\"262.7\",\"9.2\",\"7.3\",\"9.1\",\"23.9\",\"24.7\",\"22.2\",\"22.8\",\"23.1\",\"51.3\",\"58.6\",\"54.5\",\"62.1\",\"9.9\",\"6.0\",\"7.9\",\"9.7\",\"6.0\",\"9.5\",\"9.3\",\"9.4\",\"7.2\",\"9.8\",\"7.1\",\"7.5\",\"24.5\",\"24.9\",\"23.7\",\"20.2\",\"51.8\",\"54.7\",\"8.0\",\"8.8\",\"6.3\",\"24.5\",\"25.6\",\"22.1\",\"22.3\",\"59.8\",\"54.2\",\"51.1\",\"57.8\",\"63.4\",\"62.9\",\"282.7\",\"9.2\",\"7.7\",\"7.0\",\"25.9\",\"22.7\",\"23.1\",\"21.8\",\"20.8\",\"50.5\",\"53.4\",\"54.9\",\"55.8\",\"8.2\",\"8.0\",\"6.7\",\"24.4\",\"22.8\",\"22.3\",\"23.0\",\"22.4\",\"55.6\",\"52.6\",\"59.7\",\"9.8\",\"7.8\",\"8.0\",\"23.0\",\"23.4\",\"20.6\",\"23.1\",\"20.1\",\"9.5\",\"6.9\",\"10.0\",\"24.7\",\"24.3\",\"24.8\",\"22.5\",\"20.9\",\"23.3\",\"50.5\",\"6.9\",\"6.5\",\"6.9\",\"8.6\",\"7.7\",\"8.9\",\"25.7\",\"24.6\",\"20.4\",\"21.4\",\"23.8\",\"8.8\",\"8.4\",\"10.0\",\"24.9\",\"23.0\",\"8.2\",\"9.5\",\"7.0\",\"23.0\",\"22.8\",\"23.2\",\"9.6\",\"8.9\",\"9.9\",\"22.4\",\"25.4\",\"7.8\",\"6.3\",\"8.7\",\"24.7\",\"22.4\",\"24.1\",\"20.8\",\"22.5\",\"20.3\",\"59.4\",\"55.3\",\"55.9\",\"55.8\",\"9.9\",\"6.7\",\"6.3\",\"25.7\",\"24.7\",\"21.1\",\"20.8\",\"23.6\",\"53.6\",\"54.4\",\"6.6\",\"8.2\",\"6.4\",\"22.1\",\"24.2\",\"20.6\",\"23.2\",\"21.8\",\"59.6\",\"57.0\",\"7.3\",\"6.2\",\"6.3\",\"22.8\",\"22.3\",\"23.7\",\"22.3\",\"22.9\",\"21.4\",\"58.6\",\"57.4\",\"52.1\",\"6.1\",\"6.4\",\"7.9\",\"24.4\",\"24.3\",\"8.6\",\"7.8\",\"6.3\",\"22.7\",\"25.6\",\"22.4\",\"22.9\",\"21.6\",\"52.1\",\"51.8\",\"6.9\",\"6.4\",\"8.5\",\"23.4\",\"24.8\",\"23.9\",\"23.6\",\"20.8\",\"57.9\",\"58.7\",\"6.4\",\"9.4\",\"7.8\",\"7.1\",\"8.5\",\"23.4\",\"9.0\",\"6.4\",\"6.6\",\"22.5\",\"22.8\",\"24.8\",\"22.7\",\"6.8\",\"6.2\",\"8.7\",\"23.7\",\"24.9\",\"23.9\",\"22.3\",\"53.2\",\"56.3\",\"50.5\",\"57.7\",\"57.9\",\"63.3\",\"6.2\",\"9.5\",\"7.5\",\"23.9\",\"24.7\",\"25.7\",\"20.9\",\"22.0\",\"23.3\",\"59.4\",\"10.0\",\"9.3\",\"7.0\",\"23.2\",\"23.2\",\"7.8\",\"6.8\",\"7.0\",\"9.4\",\"7.1\",\"8.9\",\"25.5\",\"24.6\",\"22.7\",\"20.7\",\"22.9\",\"8.4\",\"7.6\",\"9.4\",\"25.9\",\"24.9\",\"23.4\",\"22.5\",\"7.3\",\"10.0\",\"8.7\",\"25.5\",\"25.2\",\"22.2\",\"21.6\",\"23.6\",\"20.8\",\"7.1\",\"8.5\",\"8.0\",\"8.5\",\"9.2\",\"7.4\",\"24.8\",\"6.1\",\"8.4\",\"9.6\",\"25.9\",\"25.4\",\"23.2\",\"22.3\",\"54.4\",\"58.2\",\"51.1\",\"63.1\",\"57.4\",\"57.9\",\"8.9\",\"6.7\",\"7.1\",\"23.4\",\"7.4\",\"6.9\",\"8.0\",\"22.0\",\"22.2\",\"23.1\",\"22.2\",\"23.6\",\"9.1\",\"7.6\",\"6.8\",\"24.9\",\"25.2\",\"20.5\",\"20.9\",\"52.3\",\"51.5\",\"58.0\",\"60.9\",\"58.9\",\"64.5\",\"8.6\",\"9.6\",\"6.4\",\"22.5\",\"25.2\",\"22.4\",\"20.4\",\"21.7\",\"21.2\",\"55.9\",\"8.4\",\"8.6\",\"9.5\",\"25.8\",\"22.3\",\"23.7\",\"22.4\",\"50.3\",\"55.0\",\"54.1\",\"63.9\",\"56.4\",\"58.4\",\"323.8\",\"269.6\",\"8.0\",\"8.5\",\"8.1\",\"9.2\",\"7.3\",\"6.4\",\"25.2\",\"23.4\",\"23.8\",\"22.7\",\"54.3\",\"53.8\",\"54.0\",\"63.9\",\"9.1\",\"8.7\",\"9.8\",\"23.4\",\"24.2\",\"22.3\",\"22.2\",\"22.0\",\"23.8\",\"9.4\",\"6.6\",\"9.7\",\"25.0\",\"23.4\",\"20.9\",\"20.2\",\"22.7\",\"51.4\",\"53.6\",\"54.0\",\"56.6\",\"60.9\",\"59.8\",\"264.5\",\"7.4\",\"8.0\",\"6.0\",\"25.1\",\"25.7\",\"23.1\",\"6.6\",\"6.3\",\"8.6\",\"25.0\",\"23.7\",\"23.5\",\"22.3\",\"59.9\",\"54.1\",\"50.2\",\"9.4\",\"7.7\",\"7.4\",\"7.6\",\"8.3\",\"9.0\",\"6.3\",\"6.3\",\"9.8\",\"24.1\",\"23.0\",\"21.6\",\"22.0\",\"56.5\",\"54.5\",\"57.3\",\"55.4\",\"60.9\",\"56.1\",\"9.7\",\"7.4\",\"6.8\",\"24.9\",\"22.1\",\"24.4\",\"23.3\",\"24.0\",\"21.3\",\"55.0\",\"51.3\",\"6.3\",\"6.3\",\"9.1\",\"23.1\",\"23.8\",\"10.0\",\"9.8\",\"8.1\",\"8.1\",\"9.9\",\"25.2\",\"24.5\",\"23.7\",\"23.8\",\"23.0\",\"23.7\",\"56.4\",\"55.3\",\"56.6\",\"8.0\",\"6.5\",\"7.3\",\"25.8\",\"7.2\",\"6.6\",\"6.8\",\"25.2\",\"22.9\",\"23.5\",\"21.3\",\"58.2\",\"59.7\",\"50.4\",\"62.5\",\"62.3\",\"57.3\",\"9.9\",\"6.9\",\"10.0\",\"22.2\",\"22.6\",\"22.1\",\"20.5\",\"23.1\",\"24.0\",\"57.3\",\"54.5\",\"58.0\",\"59.0\",\"8.1\",\"7.0\",\"6.2\",\"24.8\",\"22.1\",\"20.2\",\"21.6\",\"58.5\",\"54.3\",\"55.4\",\"55.1\",\"63.4\",\"7.0\",\"7.1\",\"6.3\",\"25.2\",\"24.8\",\"21.2\",\"21.1\",\"53.1\",\"50.6\",\"59.6\",\"56.2\",\"61.2\",\"55.5\",\"337.6\",\"6.5\",\"7.0\",\"6.8\",\"9.5\",\"8.8\",\"8.9\",\"22.3\",\"24.0\",\"22.8\",\"7.7\",\"6.2\",\"9.2\",\"25.5\",\"23.1\",\"24.8\",\"23.0\",\"20.7\",\"22.7\",\"55.3\",\"9.4\",\"9.1\",\"8.5\",\"23.4\",\"25.8\",\"23.8\",\"21.3\",\"21.8\",\"59.5\",\"58.7\",\"59.0\",\"59.9\",\"62.4\",\"9.6\",\"6.1\",\"7.7\",\"23.9\",\"24.9\",\"21.4\",\"20.6\",\"57.5\",\"56.3\",\"57.6\",\"61.9\",\"61.8\",\"9.0\",\"7.7\",\"9.3\",\"22.2\",\"22.3\",\"20.5\",\"22.7\",\"52.8\",\"56.1\",\"50.4\",\"60.7\",\"57.0\",\"8.2\",\"8.6\",\"8.8\",\"23.2\",\"23.0\",\"22.1\",\"23.8\",\"20.2\",\"50.5\",\"6.5\",\"8.6\",\"6.9\",\"22.5\",\"25.7\",\"21.6\",\"23.1\",\"50.1\",\"53.4\",\"59.4\",\"56.8\",\"55.1\",\"59.3\",\"335.2\",\"304.4\",\"9.3\",\"6.4\",\"7.0\",\"23.1\",\"25.2\",\"21.1\",\"20.1\",\"21.1\",\"57.9\",\"56.2\",\"53.0\",\"64.2\",\"57.7\",\"7.3\",\"6.8\",\"8.7\",\"24.2\",\"23.5\",\"20.3\",\"21.7\",\"52.3\",\"52.8\",\"6.8\",\"9.8\",\"6.8\",\"23.1\",\"9.0\",\"9.7\",\"7.1\",\"22.4\",\"7.1\",\"7.9\",\"6.6\",\"22.3\",\"25.3\",\"21.6\",\"20.4\",\"21.1\",\"57.1\",\"56.6\",\"56.4\",\"9.8\",\"6.4\",\"9.8\",\"9.4\",\"8.2\",\"7.7\",\"25.0\",\"25.0\",\"8.0\",\"7.5\",\"8.2\",\"25.0\",\"24.6\",\"20.8\",\"21.1\",\"54.4\",\"53.9\",\"59.8\",\"9.3\",\"9.2\",\"6.4\",\"22.0\",\"22.5\",\"6.7\",\"9.5\",\"7.2\",\"24.0\",\"23.9\",\"23.6\",\"21.9\",\"23.9\",\"22.4\",\"51.1\",\"59.6\",\"56.7\",\"59.8\",\"9.6\",\"7.7\",\"8.2\",\"23.0\",\"24.4\",\"23.9\",\"22.9\",\"23.7\",\"57.1\",\"54.6\",\"57.9\",\"56.4\",\"58.9\",\"7.7\",\"8.7\",\"9.3\",\"23.2\",\"23.7\",\"24.3\",\"23.4\",\"22.4\",\"23.2\",\"56.0\",\"54.6\",\"8.1\",\"7.6\",\"8.8\",\"25.9\",\"23.6\",\"24.0\",\"23.5\",\"21.0\",\"22.2\",\"56.9\",\"52.7\",\"59.1\",\"7.2\",\"7.7\",\"7.3\",\"22.1\",\"22.4\",\"22.2\",\"22.3\",\"23.5\",\"57.8\",\"53.7\",\"55.4\",\"58.0\",\"61.3\",\"9.8\",\"9.3\",\"6.1\",\"22.0\",\"22.6\",\"23.3\",\"20.6\",\"20.1\",\"57.2\",\"59.3\",\"7.9\",\"8.6\",\"6.8\",\"25.8\",\"23.4\",\"20.2\",\"23.9\",\"21.5\",\"53.8\",\"50.5\",\"50.5\",\"6.4\",\"8.1\",\"6.7\",\"24.5\",\"25.5\",\"23.9\",\"21.6\",\"23.2\",\"9.0\",\"9.0\",\"6.5\",\"22.8\",\"23.9\",\"9.1\",\"7.5\",\"9.0\",\"23.9\",\"22.1\",\"7.5\",\"7.8\",\"6.3\",\"23.8\",\"23.1\",\"20.2\",\"20.3\",\"20.8\",\"54.1\",\"57.1\",\"59.1\",\"64.8\",\"63.3\",\"55.6\",\"6.8\",\"6.1\",\"6.1\",\"24.3\",\"25.1\",\"20.4\",\"22.8\",\"22.2\",\"52.5\",\"54.7\",\"50.0\",\"58.2\",\"57.2\",\"56.2\",\"6.8\",\"6.8\",\"8.6\",\"25.9\",\"23.4\",\"20.8\",\"22.8\",\"22.0\",\"57.6\",\"58.5\",\"7.2\",\"7.0\",\"7.8\",\"7.1\",\"7.7\",\"7.8\",\"9.2\",\"7.3\",\"7.2\",\"22.8\",\"22.3\",\"24.3\",\"21.4\",\"22.2\",\"7.0\",\"8.3\",\"6.2\",\"24.7\",\"23.1\",\"23.5\",\"23.8\",\"54.5\",\"58.8\",\"52.5\",\"7.4\",\"7.0\",\"6.8\",\"9.7\",\"9.8\",\"9.8\",\"23.1\",\"23.6\",\"23.6\",\"23.7\",\"20.5\",\"20.1\",\"57.3\",\"51.1\",\"56.6\",\"58.4\",\"61.4\",\"7.7\",\"7.3\",\"7.7\",\"25.8\",\"25.1\",\"8.9\",\"8.8\",\"7.4\",\"23.0\",\"23.7\",\"20.8\",\"23.3\",\"21.6\",\"7.0\",\"9.4\",\"6.6\",\"25.5\",\"23.3\",\"23.1\",\"22.5\",\"6.0\",\"7.5\",\"6.7\",\"6.1\",\"7.2\",\"6.3\",\"8.7\",\"22.9\",\"23.4\",\"22.8\",\"23.4\",\"21.9\",\"52.9\",\"8.5\",\"9.9\",\"9.2\",\"25.1\",\"7.6\",\"6.1\",\"8.0\",\"25.4\",\"25.0\",\"21.9\",\"24.0\",\"55.3\",\"52.5\",\"53.3\",\"59.0\",\"63.3\",\"62.8\",\"268.1\",\"297.3\",\"7.5\",\"6.7\",\"9.6\",\"24.2\",\"24.4\",\"23.5\",\"20.7\",\"51.0\",\"55.0\",\"51.7\",\"65.0\",\"56.7\",\"63.2\",\"294.8\",\"284.4\",\"282.3\",\"7.1\",\"8.9\",\"9.5\",\"25.7\",\"8.6\",\"6.3\",\"8.9\",\"25.7\",\"23.2\",\"21.7\",\"23.9\",\"22.2\",\"52.5\",\"57.0\",\"59.3\",\"55.9\",\"8.7\",\"9.4\",\"9.2\",\"23.4\",\"25.7\",\"22.8\",\"23.5\",\"20.8\",\"23.6\",\"52.7\",\"7.9\",\"9.5\",\"7.4\",\"25.3\",\"25.0\",\"21.9\",\"22.4\",\"60.0\",\"54.5\",\"54.7\",\"56.3\",\"61.3\",\"61.4\",\"9.3\",\"7.3\",\"8.9\",\"9.4\",\"7.2\",\"6.8\",\"23.2\",\"24.9\",\"20.5\",\"21.1\",\"56.0\",\"58.7\",\"55.4\",\"59.0\",\"57.7\",\"59.1\",\"7.2\",\"7.3\",\"10.0\",\"25.5\",\"25.2\",\"21.7\",\"22.1\",\"8.0\",\"6.3\",\"9.6\",\"22.6\",\"25.1\",\"7.1\",\"6.2\",\"9.3\",\"25.8\",\"6.3\",\"9.7\",\"7.9\",\"24.8\",\"24.5\",\"23.1\",\"22.2\",\"20.1\",\"51.1\",\"58.2\",\"54.0\",\"55.5\",\"60.7\",\"62.8\",\"8.7\",\"8.9\",\"7.3\",\"23.0\",\"23.7\",\"22.4\",\"23.5\",\"23.6\",\"20.2\",\"57.7\",\"57.0\",\"56.5\",\"59.9\",\"60.7\",\"6.5\",\"6.9\",\"7.0\",\"22.9\",\"23.8\",\"20.2\",\"20.1\",\"58.2\",\"56.4\",\"52.6\",\"64.9\",\"64.8\",\"57.5\",\"290.8\",\"289.1\",\"6.2\",\"6.3\",\"6.5\",\"24.7\",\"22.6\",\"23.7\",\"21.1\",\"57.5\",\"54.4\",\"55.0\",\"63.7\",\"60.9\",\"8.7\",\"6.7\",\"9.3\",\"24.5\",\"23.9\",\"21.5\",\"22.8\",\"22.7\",\"50.4\",\"50.0\",\"9.4\",\"8.5\",\"6.3\",\"22.7\",\"23.9\",\"6.7\",\"7.6\",\"6.1\",\"22.7\",\"23.0\",\"20.5\",\"20.9\",\"57.1\",\"54.8\",\"58.0\",\"58.6\",\"60.4\",\"56.0\",\"338.9\",\"269.1\",\"7.5\",\"6.1\",\"8.4\",\"22.1\",\"23.7\",\"22.4\",\"21.7\",\"6.0\",\"6.2\",\"7.0\",\"24.5\",\"25.3\",\"20.1\",\"22.4\",\"20.6\",\"57.2\",\"50.9\",\"53.0\",\"9.8\",\"7.5\",\"9.1\",\"22.2\",\"23.2\",\"23.2\",\"20.6\",\"20.9\",\"55.4\",\"56.3\",\"56.8\",\"62.9\",\"60.6\",\"63.5\",\"268.9\",\"7.8\",\"8.6\",\"6.1\",\"24.1\",\"7.0\",\"8.7\",\"7.4\",\"23.3\",\"25.8\",\"24.3\",\"21.7\",\"20.5\",\"6.7\",\"9.5\",\"9.9\",\"9.5\",\"7.4\",\"8.6\",\"25.6\",\"25.2\",\"23.1\",\"23.1\",\"22.7\",\"52.2\",\"56.0\",\"58.2\",\"63.9\",\"8.6\",\"8.6\",\"6.1\",\"25.7\",\"23.8\",\"22.5\",\"23.7\",\"56.9\",\"50.0\",\"55.5\",\"57.9\",\"58.5\",\"60.8\",\"329.5\",\"327.9\",\"6.2\",\"10.0\",\"7.4\",\"24.2\",\"24.8\",\"24.2\",\"6.5\",\"7.7\",\"7.5\",\"22.0\",\"23.6\",\"20.6\",\"20.6\",\"21.3\",\"58.5\",\"57.0\",\"58.7\",\"59.1\",\"55.2\",\"59.9\",\"251.5\",\"8.9\",\"9.9\",\"9.9\",\"22.8\",\"25.9\",\"25.2\",\"21.8\",\"10.0\",\"6.3\",\"6.9\",\"25.5\",\"24.7\",\"8.7\",\"8.8\",\"22.5\",\"23.5\",\"24.4\",\"20.6\",\"21.8\",\"10.0\",\"6.4\",\"7.0\",\"22.7\",\"24.6\",\"23.4\",\"22.4\",\"56.1\",\"7.6\",\"9.7\",\"6.1\",\"24.0\",\"7.5\",\"9.2\",\"6.5\",\"23.4\",\"24.6\",\"23.0\",\"22.4\",\"22.2\",\"51.4\",\"51.6\",\"56.0\",\"64.2\",\"58.1\",\"55.5\",\"9.6\",\"9.4\",\"6.2\",\"24.5\",\"25.6\",\"22.1\",\"23.9\",\"6.6\",\"8.2\",\"7.7\",\"23.0\",\"25.8\",\"21.3\",\"23.7\",\"21.0\",\"53.2\",\"57.5\",\"50.8\",\"60.8\",\"8.9\",\"6.5\",\"8.8\",\"7.6\",\"7.6\",\"7.1\",\"22.1\",\"24.0\",\"23.6\",\"23.0\",\"20.7\",\"53.6\",\"56.9\",\"56.2\",\"8.8\",\"7.0\",\"8.5\",\"24.3\",\"22.2\",\"23.7\",\"20.7\",\"21.6\",\"58.0\",\"59.7\",\"51.4\",\"8.1\",\"7.8\",\"9.1\",\"25.9\",\"24.5\",\"22.7\",\"21.9\",\"20.7\",\"56.5\",\"8.6\",\"6.1\",\"7.4\",\"23.0\",\"25.3\",\"24.5\",\"20.4\",\"22.4\",\"22.9\",\"55.4\",\"6.5\",\"8.4\",\"7.9\",\"9.9\",\"9.9\",\"8.1\",\"9.2\",\"6.3\",\"6.1\",\"23.3\",\"22.7\",\"21.7\",\"23.8\",\"52.2\",\"50.0\",\"57.6\",\"55.4\",\"56.1\",\"55.9\",\"335.5\",\"6.2\",\"9.9\",\"8.2\",\"25.5\",\"9.8\",\"8.5\",\"9.0\",\"25.7\",\"24.8\",\"21.1\",\"23.4\",\"22.3\",\"55.7\",\"7.3\",\"6.2\",\"7.9\",\"8.2\",\"8.1\",\"6.4\",\"22.3\",\"23.5\",\"24.9\",\"22.2\",\"23.4\",\"20.9\",\"59.4\",\"54.2\",\"59.9\",\"7.2\",\"7.2\",\"9.8\",\"24.7\",\"23.7\",\"20.2\",\"20.6\",\"21.2\",\"52.3\",\"54.6\",\"53.1\",\"58.7\"]},\"selected\":{\"id\":\"1338\"},\"selection_policy\":{\"id\":\"1337\"}},\"id\":\"1174\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1072\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"1255\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"1256\",\"type\":\"ResetTool\"},{\"attributes\":{\"axis_label\":\"days\",\"axis_label_standoff\":10,\"axis_label_text_color\":\"#E0E0E0\",\"axis_label_text_font\":\"Helvetica\",\"axis_label_text_font_size\":\"1.25em\",\"axis_label_text_font_style\":\"normal\",\"axis_line_alpha\":0,\"axis_line_color\":\"#E0E0E0\",\"coordinates\":null,\"formatter\":{\"id\":\"1290\"},\"group\":null,\"major_label_policy\":{\"id\":\"1291\"},\"major_label_text_color\":\"#E0E0E0\",\"major_label_text_font\":\"Helvetica\",\"major_label_text_font_size\":\"1.025em\",\"major_tick_line_alpha\":0,\"major_tick_line_color\":\"#E0E0E0\",\"minor_tick_line_alpha\":0,\"minor_tick_line_color\":\"#E0E0E0\",\"ticker\":{\"id\":\"1015\"}},\"id\":\"1014\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1344\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"1288\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"1061\",\"type\":\"BasicTicker\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1177\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"red\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"red\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"red\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1176\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1290\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1311\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1345\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"1199\",\"type\":\"BasicTicker\"},{\"attributes\":{\"data\":{\"x\":[0,2,4,6,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,0,2,4,5,6,7,8,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,0,2,4,0,2,4,6,8,0,2,4,6,8,9,10,11,12,0,2,4,5,6,7,8,0,2,4,5,6,7,8,9,10,0,2,4,5,6,7,8,9,10,0,2,4,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,0,2,4,5,6,7,8,9,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,0,2,4,6,8,9,10,11,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,0,2,4,6,0,2,4,6,8,0,2,4,6,7,8,9,10,0,2,4,0,2,4,5,6,7,8,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,0,2,4,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,5,6,7,0,2,4,6,0,2,4,5,6,7,8,9,10,11,12,13,14,5,7,9,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,8,0,2,4,6,7,8,9,10,11,0,2,4,6,0,2,4,5,6,7,8,9,10,11,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,0,2,4,0,2,4,7,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,0,2,4,5,6,7,8,9,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,0,2,4,5,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,7,8,9,10,0,2,4,6,7,8,9,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,7,8,9,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,5,6,7,8,9,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,5,7,9,11,12,13,14,15,16,17,18,19,20,0,2,4,5,6,7,8,9,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,7,8,9,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,0,2,4,6,0,2,4,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,0,2,4,5,6,7,8,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,0,2,4,0,2,4,6,7,8,9,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,3,5,7,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,0,2,4,0,2,4,6,8,9,10,11,12,0,2,4,5,6,7,8,9,0,2,4,6,7,8,9,10,11,7,9,11,13,14,15,16,17,18,19,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,9,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,5,7,9,10,11,12,13,0,2,4,6,0,2,5,7,9,10,11,12,13,14,15,16,17,18,19,0,2,4,5,6,7,8,9,10,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,9,10,11,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,0,2,4,6,8,9,10,11,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,0,2,4,6,8,9,10,11,12,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,0,2,4,5,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,0,2,4,5,6,7,8,9,10,11,5,7,9,0,2,4,6,7,8,9,10,0,2,4,6,8,0,2,4,5,6,7,0,2,4,6,8,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,7,8,9,10,11,12,0,2,4,6,7,8,9,10,11,12,0,2,0,2,4,6,0,2,4,5,6,7,8,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,9,10,11,0,2,4,6,8,0,2,4,0,2,4,5,6,7,8,9,0,2,4,5,6,7,8,7,9,11,12,13,14,15,16,17,0,2,4,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,0,2,4,6,7,8,9,10,0,2,4,6,8,9,10,11,13,14,15,16,17,0,2,4,5,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,0,2,4,6,8,9,10,11,12,13,14,0,2,4,5,6,7,8,9,10,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,0,2,4,6,8,9,10,11,12,13,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,9,10,11,12,0,2,4,6,8,0,2,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,0,2,4,5,6,7,0,2,4,5,6,7,8,9,10,11,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,7,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,0,2,4,6,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,0,2,4,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,5,6,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,11,12,13,14,15,0,2,4,5,6,7,8,9,10,11,12,0,2,4,5,6,7,8,9,10,11,12,13,0,3,5,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,0,3,5,7,8,9,10,11,12,13,14,0,2,4,6,7,8,9,10,0,2,4,6,8,6,8,10,12,14,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,10,11,12,0,2,4,0,2,4,0,2,4,5,6,7,8,9,0,2,4,6,8,9,10,11,12,13,0,2,4,0,2,4,5,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,7,8,9,10,0,2,4,5,6,7,8,5,7,0,2,0,2,4,6,7,8,9,10,11,0,2,4,6,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,5,6,7,8,9,10,11,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,0,2,4,6,7,8,9,6,8,10,12,14,5,7,9,11,7,9,11,13,14,15,16,17,18,19,20,21,22,23,0,2,4,5,6,7,8,9,10,11,12,13,14,15,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,7,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,6,7,8,9,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,6,0,2,4,5,6,7,8,9,0,2,4,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,0,2,4,5,6,7,0,2,4,6,7,8,9,10,11,12,13,14,15,16,17,0,2,4,5,6,7,8,0,2,4,6,8,0,2,5,6,7,8,9,0,2,4,6,8,9,10,11,0,2,4,6,0,2,4,6,7,8,9,10,11,12,13,14,15,16,0,2,4,5,6,7,8,0,2,4,6,7,8,9,10,11,12,13,14,0,2,4,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,0,2,4,5,6,7,8,9,10,11,0,2,4,0,2,4,0,2,4,6,8,9,10,11,12,13,14,15,16,17,0,2,4,6,0,2,4,6,7,8,9,10,11,0,2,4,0,2,4,5,6,7,8,9,10,11,12,13,0,2,4,6,7,8,9,10,11,12,13,14],\"y\":[\"1.9\",\"1.8\",\"1.1\",\"2.3\",\"1.9\",\"1.2\",\"1.6\",\"1.3\",\"1.7\",\"1.4\",\"2.5\",\"2.0\",\"14.3\",\"13.1\",\"15.0\",\"17.2\",\"18.1\",\"20.9\",\"21.5\",\"25.8\",\"43.3\",\"1.1\",\"1.2\",\"1.6\",\"2.6\",\"2.4\",\"2.5\",\"14.9\",\"1.0\",\"1.3\",\"1.9\",\"2.9\",\"2.0\",\"2.8\",\"12.4\",\"1.6\",\"1.7\",\"1.2\",\"2.5\",\"2.4\",\"2.8\",\"14.6\",\"12.6\",\"15.8\",\"15.4\",\"17.0\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"1.3\",\"1.5\",\"1.9\",\"2.2\",\"2.3\",\"14.7\",\"12.3\",\"13.5\",\"16.8\",\"15.5\",\"17.1\",\"20.2\",\"23.4\",\"24.3\",\"44.6\",\"1.0\",\"1.1\",\"1.2\",\"2.5\",\"2.2\",\"2.2\",\"14.2\",\"12.8\",\"13.4\",\"16.3\",\"16.9\",\"16.5\",\"21.3\",\"1.2\",\"1.4\",\"1.9\",\"2.1\",\"2.2\",\"12.9\",\"13.8\",\"14.8\",\"18.0\",\"1.7\",\"1.0\",\"1.4\",\"2.4\",\"2.5\",\"15.6\",\"15.3\",\"14.3\",\"14.3\",\"18.8\",\"17.8\",\"1.3\",\"1.4\",\"1.2\",\"2.5\",\"2.5\",\"1.5\",\"1.6\",\"1.6\",\"1.0\",\"1.5\",\"1.1\",\"2.0\",\"2.8\",\"12.5\",\"12.2\",\"16.2\",\"15.5\",\"14.8\",\"23.6\",\"21.5\",\"23.6\",\"1.4\",\"1.8\",\"1.5\",\"2.4\",\"2.6\",\"14.7\",\"14.7\",\"15.5\",\"14.1\",\"18.5\",\"14.1\",\"21.4\",\"24.4\",\"21.4\",\"1.4\",\"1.4\",\"1.6\",\"2.2\",\"2.1\",\"12.6\",\"16.0\",\"18.1\",\"15.8\",\"1.8\",\"1.3\",\"1.0\",\"1.2\",\"1.8\",\"1.7\",\"2.5\",\"2.8\",\"1.9\",\"1.6\",\"1.6\",\"2.8\",\"2.6\",\"15.7\",\"14.6\",\"17.1\",\"17.6\",\"1.2\",\"1.4\",\"1.9\",\"2.2\",\"2.6\",\"2.9\",\"15.1\",\"1.8\",\"1.1\",\"1.0\",\"2.6\",\"2.6\",\"2.8\",\"13.3\",\"12.0\",\"12.6\",\"1.9\",\"1.3\",\"1.7\",\"2.2\",\"2.0\",\"2.6\",\"14.5\",\"14.7\",\"14.6\",\"1.3\",\"1.1\",\"1.2\",\"2.9\",\"2.0\",\"12.4\",\"14.7\",\"12.1\",\"1.6\",\"1.2\",\"1.3\",\"2.0\",\"2.8\",\"13.1\",\"15.1\",\"12.5\",\"15.3\",\"17.6\",\"1.5\",\"1.2\",\"1.6\",\"2.0\",\"2.5\",\"2.4\",\"15.3\",\"14.1\",\"1.3\",\"1.2\",\"1.8\",\"2.9\",\"2.2\",\"15.6\",\"15.0\",\"16.8\",\"15.1\",\"18.8\",\"25.7\",\"25.8\",\"2.0\",\"1.1\",\"1.7\",\"2.1\",\"2.4\",\"15.6\",\"12.3\",\"14.3\",\"15.5\",\"18.0\",\"1.7\",\"1.4\",\"1.7\",\"2.1\",\"2.3\",\"12.3\",\"15.3\",\"12.2\",\"17.9\",\"14.6\",\"1.9\",\"2.0\",\"1.3\",\"2.8\",\"2.5\",\"15.5\",\"13.9\",\"15.7\",\"1.2\",\"1.4\",\"1.5\",\"2.3\",\"2.3\",\"13.1\",\"14.3\",\"14.8\",\"1.2\",\"1.2\",\"2.0\",\"2.6\",\"2.2\",\"1.2\",\"1.4\",\"1.8\",\"3.0\",\"2.8\",\"12.2\",\"15.6\",\"18.4\",\"14.6\",\"18.3\",\"22.5\",\"22.1\",\"24.4\",\"1.5\",\"1.3\",\"1.7\",\"2.0\",\"3.0\",\"13.7\",\"14.6\",\"12.4\",\"1.4\",\"1.8\",\"1.4\",\"2.4\",\"1.7\",\"1.0\",\"1.5\",\"2.3\",\"2.5\",\"1.4\",\"1.1\",\"1.1\",\"2.7\",\"2.6\",\"13.1\",\"13.4\",\"15.7\",\"1.2\",\"1.6\",\"1.1\",\"1.9\",\"1.5\",\"1.0\",\"2.9\",\"2.7\",\"2.1\",\"15.4\",\"1.7\",\"1.8\",\"1.8\",\"2.2\",\"2.0\",\"15.4\",\"13.9\",\"15.3\",\"17.0\",\"14.8\",\"26.0\",\"24.4\",\"21.3\",\"44.7\",\"44.1\",\"41.6\",\"1.9\",\"1.2\",\"1.6\",\"2.5\",\"2.2\",\"15.2\",\"15.9\",\"14.1\",\"16.9\",\"16.0\",\"15.9\",\"20.2\",\"20.6\",\"21.4\",\"1.9\",\"1.2\",\"1.2\",\"2.8\",\"2.9\",\"15.6\",\"15.9\",\"12.9\",\"1.8\",\"1.8\",\"1.8\",\"2.0\",\"2.0\",\"13.6\",\"14.4\",\"14.4\",\"15.1\",\"17.6\",\"25.4\",\"1.7\",\"1.8\",\"1.9\",\"2.9\",\"2.7\",\"15.3\",\"13.1\",\"16.2\",\"17.3\",\"14.7\",\"20.6\",\"20.5\",\"25.5\",\"40.5\",\"1.7\",\"1.9\",\"1.3\",\"2.7\",\"2.9\",\"14.8\",\"14.2\",\"18.7\",\"1.1\",\"1.2\",\"1.1\",\"2.6\",\"2.7\",\"15.4\",\"15.5\",\"14.2\",\"14.4\",\"1.3\",\"1.3\",\"1.8\",\"2.2\",\"2.9\",\"14.8\",\"15.0\",\"17.1\",\"17.9\",\"16.0\",\"25.5\",\"24.6\",\"22.2\",\"1.1\",\"1.3\",\"1.3\",\"2.1\",\"1.1\",\"1.1\",\"1.6\",\"2.1\",\"2.1\",\"15.4\",\"15.5\",\"18.2\",\"16.7\",\"18.3\",\"23.9\",\"22.2\",\"25.1\",\"42.8\",\"41.2\",\"1.1\",\"1.2\",\"1.7\",\"2.2\",\"3.0\",\"2.8\",\"1.1\",\"1.2\",\"1.5\",\"3.0\",\"1.5\",\"1.2\",\"1.8\",\"2.5\",\"2.8\",\"2.2\",\"12.4\",\"14.9\",\"12.3\",\"17.7\",\"15.7\",\"18.1\",\"23.9\",\"1.6\",\"1.5\",\"1.3\",\"1.2\",\"1.6\",\"2.0\",\"2.9\",\"2.8\",\"15.7\",\"14.8\",\"12.6\",\"18.8\",\"16.5\",\"15.3\",\"21.7\",\"20.8\",\"24.6\",\"1.2\",\"1.7\",\"1.7\",\"2.5\",\"2.3\",\"14.6\",\"13.6\",\"13.8\",\"14.8\",\"15.4\",\"17.4\",\"22.5\",\"1.8\",\"1.9\",\"1.5\",\"2.7\",\"2.8\",\"1.9\",\"2.0\",\"1.6\",\"2.8\",\"2.5\",\"14.6\",\"14.0\",\"13.8\",\"17.8\",\"1.4\",\"1.1\",\"1.7\",\"2.5\",\"1.9\",\"1.5\",\"1.1\",\"2.1\",\"2.8\",\"2.7\",\"12.8\",\"14.8\",\"13.4\",\"14.2\",\"1.2\",\"1.0\",\"1.7\",\"3.0\",\"2.3\",\"2.1\",\"14.5\",\"12.6\",\"15.9\",\"16.0\",\"17.9\",\"1.1\",\"1.5\",\"1.7\",\"2.0\",\"2.3\",\"13.5\",\"14.0\",\"14.7\",\"18.0\",\"18.5\",\"24.1\",\"20.3\",\"1.1\",\"1.9\",\"1.8\",\"2.8\",\"1.4\",\"1.9\",\"1.3\",\"1.1\",\"1.7\",\"1.7\",\"2.3\",\"2.0\",\"1.6\",\"1.2\",\"2.7\",\"2.6\",\"12.4\",\"15.1\",\"16.0\",\"14.8\",\"14.6\",\"25.2\",\"20.2\",\"20.6\",\"44.3\",\"43.9\",\"1.1\",\"1.7\",\"1.7\",\"3.0\",\"2.1\",\"1.4\",\"1.6\",\"2.0\",\"2.3\",\"2.6\",\"2.0\",\"14.2\",\"15.8\",\"1.5\",\"1.5\",\"1.4\",\"3.0\",\"2.7\",\"14.4\",\"14.0\",\"13.5\",\"16.1\",\"16.5\",\"1.3\",\"1.6\",\"1.4\",\"2.8\",\"3.0\",\"13.5\",\"12.5\",\"12.3\",\"14.3\",\"1.7\",\"1.9\",\"1.8\",\"2.2\",\"1.7\",\"1.8\",\"1.1\",\"2.7\",\"2.5\",\"15.2\",\"15.8\",\"18.2\",\"18.1\",\"17.1\",\"20.8\",\"20.8\",\"21.6\",\"40.7\",\"1.3\",\"1.9\",\"1.9\",\"2.1\",\"2.6\",\"13.8\",\"14.5\",\"12.8\",\"1.2\",\"1.3\",\"1.5\",\"2.9\",\"2.5\",\"15.0\",\"13.6\",\"12.6\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.8\",\"0.5\",\"0.5\",\"0.5\",\"1.9\",\"1.5\",\"1.7\",\"3.0\",\"2.5\",\"13.9\",\"15.1\",\"15.0\",\"16.4\",\"18.1\",\"1.1\",\"1.4\",\"2.0\",\"2.3\",\"2.3\",\"13.9\",\"13.0\",\"14.4\",\"16.1\",\"17.7\",\"14.0\",\"23.5\",\"25.3\",\"21.7\",\"41.9\",\"1.4\",\"1.6\",\"1.3\",\"2.6\",\"2.9\",\"15.3\",\"12.6\",\"15.7\",\"16.7\",\"18.5\",\"24.6\",\"21.0\",\"1.4\",\"1.4\",\"1.8\",\"2.7\",\"2.6\",\"2.0\",\"1.6\",\"1.3\",\"3.0\",\"2.1\",\"14.2\",\"14.2\",\"1.3\",\"1.6\",\"1.7\",\"2.6\",\"2.1\",\"2.7\",\"14.6\",\"14.3\",\"15.5\",\"15.5\",\"18.3\",\"1.5\",\"2.0\",\"1.3\",\"2.7\",\"2.4\",\"15.8\",\"12.6\",\"16.0\",\"1.6\",\"1.7\",\"1.6\",\"2.7\",\"2.5\",\"13.0\",\"13.3\",\"13.8\",\"16.7\",\"17.9\",\"14.9\",\"25.0\",\"1.6\",\"1.0\",\"1.8\",\"2.1\",\"2.7\",\"14.7\",\"15.0\",\"14.1\",\"17.3\",\"16.5\",\"17.4\",\"20.5\",\"1.2\",\"1.2\",\"1.2\",\"2.2\",\"2.7\",\"13.8\",\"13.4\",\"15.4\",\"17.2\",\"18.2\",\"1.5\",\"1.1\",\"1.7\",\"2.4\",\"1.4\",\"1.5\",\"1.0\",\"3.0\",\"2.2\",\"13.4\",\"14.0\",\"15.9\",\"16.0\",\"17.8\",\"22.7\",\"21.1\",\"1.2\",\"1.1\",\"1.2\",\"2.0\",\"2.2\",\"2.1\",\"14.0\",\"13.5\",\"1.6\",\"2.0\",\"1.6\",\"2.8\",\"2.7\",\"2.6\",\"14.7\",\"13.8\",\"13.3\",\"14.6\",\"16.9\",\"16.0\",\"21.3\",\"1.5\",\"1.5\",\"1.6\",\"2.9\",\"3.0\",\"14.4\",\"13.7\",\"17.3\",\"17.5\",\"16.2\",\"25.1\",\"20.5\",\"22.4\",\"44.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"1.1\",\"1.1\",\"1.6\",\"2.2\",\"1.1\",\"1.2\",\"1.8\",\"2.3\",\"2.2\",\"16.0\",\"15.3\",\"13.5\",\"14.6\",\"17.8\",\"17.7\",\"22.2\",\"22.8\",\"1.8\",\"1.0\",\"1.3\",\"2.6\",\"2.4\",\"12.7\",\"12.1\",\"14.0\",\"16.6\",\"16.3\",\"18.7\",\"21.4\",\"23.2\",\"1.6\",\"1.9\",\"1.4\",\"3.0\",\"2.9\",\"1.8\",\"1.5\",\"1.7\",\"2.5\",\"2.4\",\"15.1\",\"14.4\",\"15.0\",\"14.5\",\"15.0\",\"18.2\",\"20.6\",\"21.5\",\"1.3\",\"1.2\",\"1.1\",\"2.5\",\"2.8\",\"2.2\",\"14.1\",\"14.6\",\"1.7\",\"1.9\",\"1.7\",\"2.4\",\"1.8\",\"1.4\",\"1.9\",\"2.5\",\"2.5\",\"15.2\",\"12.2\",\"17.4\",\"16.8\",\"17.2\",\"21.2\",\"20.8\",\"21.6\",\"1.7\",\"1.5\",\"1.9\",\"2.6\",\"2.3\",\"13.4\",\"14.5\",\"17.3\",\"14.5\",\"15.7\",\"21.8\",\"22.6\",\"1.9\",\"1.4\",\"2.0\",\"2.9\",\"2.9\",\"14.4\",\"15.7\",\"16.7\",\"17.0\",\"15.5\",\"22.3\",\"21.7\",\"1.9\",\"1.5\",\"1.0\",\"2.0\",\"2.1\",\"1.8\",\"1.1\",\"1.1\",\"2.9\",\"2.3\",\"15.9\",\"14.4\",\"14.3\",\"16.4\",\"18.5\",\"17.2\",\"21.3\",\"23.1\",\"23.1\",\"1.8\",\"1.9\",\"1.3\",\"2.1\",\"2.1\",\"14.3\",\"14.0\",\"18.1\",\"18.8\",\"17.8\",\"23.5\",\"24.7\",\"1.8\",\"1.6\",\"1.0\",\"2.7\",\"3.0\",\"14.7\",\"14.5\",\"16.3\",\"16.6\",\"18.8\",\"20.6\",\"23.0\",\"20.8\",\"43.1\",\"1.1\",\"2.0\",\"1.8\",\"1.9\",\"1.3\",\"1.5\",\"1.6\",\"2.0\",\"1.5\",\"2.8\",\"2.3\",\"13.6\",\"13.9\",\"16.4\",\"14.5\",\"15.3\",\"21.7\",\"1.5\",\"1.1\",\"1.0\",\"2.1\",\"2.8\",\"15.8\",\"15.2\",\"1.3\",\"1.6\",\"1.3\",\"2.9\",\"2.7\",\"13.3\",\"15.1\",\"18.0\",\"14.7\",\"15.8\",\"22.5\",\"23.5\",\"26.0\",\"40.1\",\"41.7\",\"1.7\",\"1.1\",\"1.9\",\"2.2\",\"2.2\",\"13.8\",\"15.5\",\"15.5\",\"15.7\",\"14.4\",\"24.4\",\"25.7\",\"24.2\",\"39.4\",\"2.0\",\"1.4\",\"1.6\",\"2.5\",\"2.3\",\"1.6\",\"1.1\",\"1.5\",\"2.7\",\"2.4\",\"14.1\",\"15.8\",\"13.2\",\"17.8\",\"18.0\",\"15.6\",\"24.0\",\"25.3\",\"22.8\",\"1.0\",\"1.8\",\"1.5\",\"2.9\",\"2.3\",\"12.7\",\"13.1\",\"13.9\",\"16.1\",\"14.9\",\"1.2\",\"1.0\",\"1.9\",\"2.0\",\"2.8\",\"12.8\",\"12.3\",\"18.3\",\"18.5\",\"17.7\",\"1.2\",\"1.4\",\"1.7\",\"2.7\",\"2.6\",\"1.9\",\"1.5\",\"1.7\",\"2.7\",\"2.3\",\"13.2\",\"15.8\",\"15.6\",\"14.4\",\"14.6\",\"1.0\",\"1.0\",\"1.8\",\"2.2\",\"1.2\",\"1.8\",\"1.2\",\"2.4\",\"2.7\",\"14.9\",\"12.6\",\"13.4\",\"15.2\",\"15.7\",\"15.5\",\"2.0\",\"1.4\",\"1.8\",\"2.4\",\"2.8\",\"1.6\",\"1.9\",\"1.9\",\"2.6\",\"2.7\",\"14.8\",\"12.5\",\"18.6\",\"14.8\",\"1.7\",\"1.9\",\"1.5\",\"2.9\",\"2.2\",\"1.4\",\"1.8\",\"1.2\",\"2.9\",\"2.3\",\"15.0\",\"13.9\",\"16.9\",\"18.1\",\"17.8\",\"24.7\",\"24.6\",\"1.5\",\"1.2\",\"1.6\",\"1.4\",\"1.0\",\"1.8\",\"2.5\",\"1.6\",\"1.0\",\"1.6\",\"1.0\",\"1.5\",\"2.0\",\"2.2\",\"2.3\",\"12.6\",\"14.9\",\"15.9\",\"16.5\",\"14.1\",\"15.9\",\"1.9\",\"1.8\",\"1.2\",\"2.5\",\"2.8\",\"15.8\",\"15.4\",\"15.1\",\"17.9\",\"14.7\",\"1.1\",\"1.6\",\"1.6\",\"2.2\",\"2.1\",\"2.7\",\"14.9\",\"1.3\",\"1.8\",\"1.4\",\"3.0\",\"2.2\",\"13.5\",\"15.4\",\"13.9\",\"15.4\",\"15.0\",\"15.5\",\"25.5\",\"25.1\",\"21.8\",\"39.4\",\"1.3\",\"1.9\",\"1.2\",\"2.3\",\"2.8\",\"13.4\",\"15.0\",\"15.9\",\"15.0\",\"18.2\",\"14.9\",\"22.4\",\"20.8\",\"1.9\",\"1.0\",\"1.5\",\"2.8\",\"2.2\",\"12.6\",\"12.5\",\"18.0\",\"15.3\",\"16.5\",\"24.3\",\"22.1\",\"2.0\",\"1.9\",\"1.0\",\"2.2\",\"2.0\",\"13.8\",\"13.2\",\"1.2\",\"1.2\",\"1.3\",\"3.0\",\"2.3\",\"15.1\",\"15.3\",\"18.8\",\"16.9\",\"17.5\",\"21.3\",\"24.1\",\"1.9\",\"1.2\",\"1.3\",\"3.0\",\"2.2\",\"15.8\",\"12.3\",\"15.0\",\"16.9\",\"1.9\",\"1.9\",\"1.1\",\"2.3\",\"2.8\",\"2.3\",\"14.8\",\"13.0\",\"15.8\",\"18.8\",\"17.2\",\"16.7\",\"21.2\",\"1.7\",\"1.5\",\"1.5\",\"1.2\",\"1.7\",\"1.0\",\"1.8\",\"1.2\",\"1.1\",\"2.8\",\"2.7\",\"15.7\",\"12.1\",\"2.0\",\"1.4\",\"1.6\",\"1.7\",\"1.7\",\"1.0\",\"2.9\",\"2.3\",\"14.5\",\"13.7\",\"14.5\",\"16.3\",\"14.5\",\"24.6\",\"25.8\",\"1.3\",\"1.9\",\"1.9\",\"1.2\",\"1.5\",\"1.7\",\"2.5\",\"2.6\",\"15.5\",\"14.8\",\"15.6\",\"15.1\",\"16.5\",\"25.1\",\"25.6\",\"25.2\",\"44.1\",\"1.7\",\"1.6\",\"1.2\",\"2.9\",\"2.7\",\"12.0\",\"15.2\",\"16.2\",\"15.7\",\"15.5\",\"23.3\",\"23.2\",\"25.0\",\"40.1\",\"1.8\",\"1.2\",\"1.0\",\"2.3\",\"2.0\",\"1.5\",\"1.3\",\"2.2\",\"2.3\",\"12.2\",\"15.9\",\"18.6\",\"17.4\",\"17.8\",\"20.8\",\"25.6\",\"20.2\",\"2.0\",\"1.3\",\"1.2\",\"2.8\",\"2.9\",\"15.4\",\"14.6\",\"13.1\",\"14.1\",\"17.9\",\"14.2\",\"1.4\",\"1.5\",\"1.9\",\"2.5\",\"2.2\",\"13.9\",\"13.1\",\"16.8\",\"14.4\",\"18.3\",\"1.4\",\"1.9\",\"1.1\",\"1.5\",\"1.7\",\"2.0\",\"2.4\",\"2.6\",\"13.8\",\"12.7\",\"15.3\",\"18.7\",\"1.9\",\"1.5\",\"1.7\",\"2.8\",\"2.2\",\"2.3\",\"13.4\",\"15.8\",\"1.8\",\"1.8\",\"1.0\",\"2.4\",\"2.7\",\"13.5\",\"14.5\",\"14.5\",\"15.9\",\"1.7\",\"1.4\",\"1.5\",\"2.2\",\"2.1\",\"12.7\",\"15.7\",\"15.1\",\"16.6\",\"17.5\",\"1.2\",\"1.5\",\"1.2\",\"2.1\",\"2.9\",\"2.6\",\"12.4\",\"14.5\",\"13.6\",\"18.8\",\"16.1\",\"1.6\",\"1.2\",\"1.2\",\"2.7\",\"2.6\",\"1.5\",\"1.1\",\"1.8\",\"2.4\",\"2.9\",\"13.8\",\"15.9\",\"17.9\",\"16.1\",\"15.7\",\"21.7\",\"21.4\",\"24.6\",\"42.0\",\"45.0\",\"1.6\",\"1.1\",\"1.6\",\"2.4\",\"2.4\",\"12.9\",\"15.0\",\"12.4\",\"17.0\",\"18.9\",\"1.2\",\"1.2\",\"1.0\",\"2.8\",\"2.1\",\"15.3\",\"14.5\",\"13.9\",\"14.2\",\"18.1\",\"14.0\",\"26.0\",\"22.1\",\"1.7\",\"2.0\",\"1.2\",\"2.9\",\"1.4\",\"1.9\",\"1.9\",\"2.0\",\"2.3\",\"13.7\",\"14.5\",\"13.8\",\"18.7\",\"14.5\",\"15.0\",\"1.3\",\"1.7\",\"2.0\",\"2.9\",\"1.4\",\"1.8\",\"1.5\",\"2.8\",\"2.7\",\"14.6\",\"12.1\",\"14.4\",\"17.2\",\"14.7\",\"15.3\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"1.9\",\"1.4\",\"1.4\",\"2.8\",\"2.8\",\"1.9\",\"1.7\",\"1.3\",\"2.4\",\"2.2\",\"15.6\",\"13.2\",\"14.8\",\"17.1\",\"18.2\",\"22.3\",\"24.9\",\"21.2\",\"1.8\",\"1.0\",\"1.3\",\"1.1\",\"1.3\",\"1.6\",\"2.6\",\"2.4\",\"1.5\",\"1.8\",\"1.1\",\"2.9\",\"2.8\",\"12.3\",\"13.0\",\"13.7\",\"14.7\",\"17.0\",\"18.9\",\"1.3\",\"1.1\",\"1.8\",\"2.7\",\"2.9\",\"12.0\",\"12.1\",\"15.4\",\"15.3\",\"18.7\",\"17.1\",\"23.3\",\"22.1\",\"24.9\",\"44.5\",\"1.1\",\"1.7\",\"1.6\",\"2.3\",\"2.8\",\"14.2\",\"14.0\",\"16.4\",\"14.5\",\"14.7\",\"21.7\",\"24.1\",\"23.9\",\"42.4\",\"1.8\",\"2.0\",\"1.4\",\"2.0\",\"2.8\",\"12.1\",\"12.7\",\"18.5\",\"18.0\",\"16.8\",\"24.3\",\"21.2\",\"23.6\",\"43.4\",\"41.3\",\"44.5\",\"1.0\",\"1.2\",\"1.4\",\"2.3\",\"2.6\",\"15.7\",\"15.9\",\"14.6\",\"17.0\",\"15.2\",\"17.9\",\"1.5\",\"1.6\",\"1.1\",\"2.5\",\"2.8\",\"14.8\",\"13.0\",\"14.6\",\"17.3\",\"18.4\",\"20.3\",\"21.3\",\"20.2\",\"41.0\",\"1.7\",\"1.1\",\"1.9\",\"2.3\",\"2.6\",\"2.6\",\"15.0\",\"16.0\",\"12.9\",\"17.3\",\"16.4\",\"18.9\",\"21.5\",\"1.2\",\"1.6\",\"1.7\",\"2.8\",\"2.8\",\"13.4\",\"12.0\",\"15.2\",\"15.7\",\"18.8\",\"24.0\",\"22.8\",\"24.4\",\"43.4\",\"43.9\",\"1.5\",\"1.1\",\"1.5\",\"2.5\",\"2.1\",\"2.8\",\"12.1\",\"1.1\",\"1.0\",\"1.9\",\"2.5\",\"1.9\",\"1.4\",\"1.4\",\"3.0\",\"2.9\",\"14.4\",\"13.5\",\"17.2\",\"18.7\",\"17.0\",\"24.3\",\"24.8\",\"22.4\",\"40.4\",\"39.9\",\"1.2\",\"1.4\",\"1.9\",\"2.2\",\"2.5\",\"2.7\",\"15.0\",\"15.9\",\"14.1\",\"1.4\",\"1.7\",\"1.2\",\"2.6\",\"3.0\",\"14.3\",\"13.7\",\"12.1\",\"15.7\",\"18.5\",\"18.1\",\"22.8\",\"25.6\",\"1.6\",\"1.3\",\"1.8\",\"2.3\",\"2.5\",\"1.4\",\"2.0\",\"1.7\",\"2.6\",\"2.4\",\"15.0\",\"14.7\",\"18.2\",\"1.4\",\"1.1\",\"1.9\",\"2.5\",\"2.2\",\"2.9\",\"14.0\",\"12.9\",\"14.5\",\"17.8\",\"18.6\",\"14.8\",\"1.8\",\"1.5\",\"1.6\",\"2.8\",\"2.8\",\"15.8\",\"14.3\",\"15.7\",\"17.2\",\"14.6\",\"20.3\",\"22.5\",\"22.8\",\"44.2\",\"1.0\",\"1.5\",\"1.1\",\"2.1\",\"1.6\",\"1.7\",\"1.4\",\"2.8\",\"2.1\",\"12.3\",\"12.4\",\"18.1\",\"17.7\",\"15.5\",\"23.2\",\"1.3\",\"1.3\",\"1.6\",\"2.9\",\"1.6\",\"1.3\",\"1.4\",\"2.4\",\"2.1\",\"13.0\",\"13.3\",\"18.1\",\"1.2\",\"1.4\",\"1.5\",\"2.7\",\"2.2\",\"15.0\",\"12.9\",\"13.7\",\"18.3\",\"15.8\",\"17.0\",\"25.1\",\"21.2\",\"1.4\",\"1.2\",\"2.0\",\"2.1\",\"2.6\",\"15.4\",\"14.1\",\"17.8\",\"1.8\",\"1.1\",\"1.8\",\"2.9\",\"2.2\",\"1.5\",\"1.0\",\"1.4\",\"1.6\",\"1.2\",\"1.4\",\"2.8\",\"2.7\",\"12.2\",\"12.8\",\"17.9\",\"18.2\",\"1.5\",\"1.8\",\"1.7\",\"3.0\",\"2.7\",\"2.5\",\"15.4\",\"13.5\",\"14.8\",\"14.5\",\"18.7\",\"15.3\",\"21.0\",\"1.3\",\"1.6\",\"1.8\",\"2.2\",\"1.4\",\"1.0\",\"1.0\",\"2.3\",\"1.5\",\"1.8\",\"1.9\",\"2.0\",\"2.2\",\"14.5\",\"15.5\",\"13.4\",\"16.3\",\"18.1\",\"15.1\",\"25.6\",\"24.7\",\"1.8\",\"1.8\",\"1.3\",\"2.0\",\"1.2\",\"1.9\",\"2.7\",\"2.5\",\"2.8\",\"12.7\",\"12.2\",\"15.9\",\"1.8\",\"1.1\",\"1.7\",\"2.6\",\"2.7\",\"15.2\",\"12.0\",\"14.7\",\"18.8\",\"15.1\",\"15.4\",\"1.1\",\"1.8\",\"1.1\",\"2.4\",\"2.5\",\"13.5\",\"13.8\",\"16.0\",\"17.0\",\"15.7\",\"21.3\",\"21.4\",\"20.8\",\"42.0\",\"40.2\",\"43.3\",\"1.5\",\"1.7\",\"1.3\",\"2.2\",\"2.7\",\"14.8\",\"13.7\",\"16.0\",\"16.2\",\"16.2\",\"16.6\",\"21.3\",\"1.6\",\"1.1\",\"1.5\",\"1.2\",\"1.1\",\"1.5\",\"1.9\",\"1.3\",\"1.7\",\"1.2\",\"1.9\",\"1.4\",\"2.7\",\"2.1\",\"15.7\",\"15.4\",\"16.5\",\"18.8\",\"1.4\",\"1.8\",\"1.1\",\"2.2\",\"3.0\",\"15.6\",\"14.6\",\"14.8\",\"18.6\",\"16.4\",\"20.3\",\"23.0\",\"21.3\",\"44.1\",\"1.2\",\"1.1\",\"1.4\",\"2.0\",\"2.9\",\"14.3\",\"14.2\",\"12.3\",\"18.5\",\"16.7\",\"15.5\",\"25.6\",\"1.5\",\"1.1\",\"1.4\",\"2.6\",\"2.3\",\"15.0\",\"14.2\",\"14.8\",\"16.7\",\"14.2\",\"14.8\",\"2.0\",\"1.2\",\"1.5\",\"2.8\",\"2.6\",\"13.7\",\"13.6\",\"15.1\",\"1.3\",\"1.7\",\"1.2\",\"2.6\",\"2.4\",\"2.7\",\"14.9\",\"14.9\",\"12.2\",\"17.7\",\"1.9\",\"1.9\",\"1.9\",\"1.6\",\"1.4\",\"1.2\",\"2.2\",\"2.3\",\"15.7\",\"13.3\",\"15.0\",\"1.7\",\"1.2\",\"1.5\",\"3.0\",\"2.8\",\"1.7\",\"1.8\",\"1.4\",\"3.0\",\"2.9\",\"2.8\",\"1.5\",\"1.0\",\"1.6\",\"2.4\",\"2.5\",\"1.5\",\"2.0\",\"1.7\",\"2.3\",\"2.3\",\"2.8\",\"15.9\",\"15.9\",\"15.0\",\"17.5\",\"17.8\",\"15.3\",\"22.1\",\"1.6\",\"1.0\",\"1.5\",\"3.0\",\"2.3\",\"12.4\",\"14.2\",\"15.5\",\"16.1\",\"17.8\",\"1.3\",\"1.6\",\"1.0\",\"2.4\",\"2.2\",\"15.5\",\"13.6\",\"12.4\",\"17.6\",\"19.0\",\"1.3\",\"1.5\",\"2.0\",\"2.4\",\"3.0\",\"2.1\",\"15.4\",\"13.3\",\"14.5\",\"16.7\",\"18.7\",\"15.7\",\"1.1\",\"1.5\",\"1.3\",\"2.5\",\"2.4\",\"1.5\",\"1.3\",\"1.4\",\"2.2\",\"2.5\",\"15.5\",\"14.7\",\"12.4\",\"14.0\",\"16.6\",\"2.0\",\"1.9\",\"1.5\",\"2.7\",\"2.1\",\"14.5\",\"13.4\",\"12.1\",\"14.8\",\"18.7\",\"1.1\",\"1.3\",\"1.6\",\"1.4\",\"1.3\",\"2.5\",\"1.9\",\"2.0\",\"1.2\",\"3.0\",\"2.6\",\"2.1\",\"13.3\",\"1.2\",\"1.0\",\"1.2\",\"2.6\",\"2.7\",\"14.6\",\"13.8\",\"14.9\",\"18.6\",\"16.5\",\"25.4\",\"22.1\",\"22.4\",\"1.4\",\"1.3\",\"1.8\",\"2.4\",\"2.0\",\"2.1\",\"15.1\",\"12.3\",\"14.9\",\"16.9\",\"1.5\",\"2.0\",\"1.7\",\"2.0\",\"2.5\",\"1.5\",\"1.7\",\"1.9\",\"1.4\",\"1.6\",\"1.7\",\"2.1\",\"2.6\",\"2.4\",\"14.1\",\"12.3\",\"1.4\",\"1.5\",\"1.3\",\"2.3\",\"2.5\",\"2.9\",\"13.8\",\"1.0\",\"1.3\",\"1.6\",\"2.8\",\"2.5\",\"2.6\",\"12.7\",\"13.5\",\"14.4\",\"1.7\",\"1.6\",\"1.6\",\"1.6\",\"1.3\",\"1.6\",\"2.6\",\"1.8\",\"1.2\",\"1.0\",\"2.8\",\"2.1\",\"12.9\",\"13.8\",\"18.2\",\"14.2\",\"17.9\",\"25.8\",\"21.3\",\"24.8\",\"2.0\",\"1.1\",\"1.5\",\"2.2\",\"1.8\",\"1.3\",\"1.6\",\"2.6\",\"2.3\",\"14.1\",\"13.2\",\"14.1\",\"1.5\",\"1.4\",\"1.2\",\"2.9\",\"2.6\",\"14.9\",\"15.8\",\"16.1\",\"14.2\",\"18.5\",\"24.0\",\"22.6\",\"22.1\",\"1.7\",\"1.7\",\"1.6\",\"2.1\",\"2.4\",\"2.1\",\"15.8\",\"13.8\",\"15.8\",\"15.8\",\"1.7\",\"1.5\",\"1.3\",\"2.1\",\"2.8\",\"12.2\",\"15.8\",\"18.0\",\"14.1\",\"14.5\",\"20.6\",\"23.1\",\"24.5\",\"42.3\",\"43.7\",\"1.6\",\"1.3\",\"1.7\",\"1.4\",\"1.8\",\"1.2\",\"2.2\",\"2.6\",\"12.4\",\"13.0\",\"17.8\",\"15.1\",\"18.4\",\"24.9\",\"1.5\",\"1.3\",\"1.7\",\"2.1\",\"2.3\",\"2.0\",\"13.3\",\"14.3\",\"14.4\",\"1.8\",\"1.7\",\"1.4\",\"2.9\",\"2.4\",\"14.7\",\"13.2\",\"12.3\",\"17.9\",\"15.3\",\"14.7\",\"25.2\",\"20.6\",\"21.5\",\"42.1\",\"1.0\",\"1.5\",\"1.1\",\"2.7\",\"2.0\",\"2.4\",\"1.4\",\"2.0\",\"1.2\",\"2.7\",\"2.1\",\"13.4\",\"12.8\",\"17.6\",\"16.7\",\"17.5\",\"1.6\",\"1.6\",\"1.7\",\"1.8\",\"1.4\",\"1.9\",\"1.7\",\"1.5\",\"1.8\",\"2.2\",\"2.1\",\"15.4\",\"12.5\",\"17.4\",\"19.0\",\"14.2\",\"21.1\",\"24.5\",\"22.7\",\"1.2\",\"1.7\",\"1.1\",\"2.4\",\"2.3\",\"2.9\",\"15.6\",\"15.4\",\"12.0\",\"15.1\",\"17.4\",\"1.3\",\"2.0\",\"1.0\",\"2.9\",\"2.6\",\"1.1\",\"1.9\",\"1.2\",\"1.8\",\"1.9\",\"2.8\",\"2.8\",\"2.3\",\"14.6\",\"13.8\",\"15.9\",\"15.9\",\"17.0\",\"16.5\",\"1.2\",\"1.4\",\"1.7\",\"2.4\",\"1.7\",\"1.3\",\"1.6\",\"2.7\",\"2.7\",\"13.8\",\"13.4\",\"18.0\",\"17.0\",\"15.5\",\"20.2\",\"25.9\",\"24.3\",\"1.0\",\"1.0\",\"1.7\",\"2.8\",\"2.8\",\"2.6\",\"15.5\",\"13.8\",\"14.6\",\"17.6\",\"18.4\",\"16.5\",\"24.5\",\"1.6\",\"1.8\",\"1.4\",\"2.1\",\"2.1\",\"15.6\",\"15.7\",\"16.6\",\"18.5\",\"18.0\",\"22.9\",\"23.3\",\"1.9\",\"1.6\",\"1.2\",\"2.4\",\"2.0\",\"14.3\",\"13.6\",\"16.0\",\"18.8\",\"14.8\",\"25.5\",\"25.4\",\"20.1\",\"42.0\",\"1.8\",\"1.2\",\"1.6\",\"1.9\",\"1.4\",\"1.2\",\"2.4\",\"2.0\",\"2.2\",\"1.2\",\"1.9\",\"1.1\",\"2.3\",\"2.9\",\"2.9\",\"15.2\",\"13.0\",\"15.7\",\"17.9\",\"1.7\",\"1.8\",\"2.0\",\"2.6\",\"2.8\",\"15.5\",\"14.8\",\"15.0\",\"14.9\",\"16.7\",\"15.8\",\"22.8\",\"22.0\",\"1.1\",\"1.9\",\"1.4\",\"2.8\",\"2.8\",\"14.4\",\"15.2\",\"14.9\",\"18.1\",\"16.2\",\"23.2\",\"20.9\",\"1.3\",\"1.1\",\"1.1\",\"2.8\",\"2.7\",\"15.0\",\"14.6\",\"19.0\",\"16.5\",\"17.6\",\"20.2\",\"22.2\",\"1.0\",\"1.8\",\"1.8\",\"2.2\",\"2.6\",\"14.4\",\"12.3\",\"14.4\",\"16.5\",\"1.1\",\"1.8\",\"1.8\",\"2.1\",\"2.1\",\"12.4\",\"15.5\",\"18.6\",\"18.1\",\"15.6\",\"21.8\",\"21.9\",\"25.4\",\"40.3\",\"42.7\",\"1.7\",\"1.4\",\"1.3\",\"2.4\",\"2.3\",\"14.9\",\"14.3\",\"13.7\",\"14.4\",\"14.2\",\"15.8\",\"24.7\",\"25.2\",\"1.4\",\"1.9\",\"1.1\",\"2.2\",\"2.7\",\"14.2\",\"13.9\",\"18.7\",\"15.2\",\"1.2\",\"1.4\",\"1.1\",\"2.6\",\"1.1\",\"1.8\",\"1.4\",\"2.0\",\"1.8\",\"1.1\",\"1.6\",\"2.1\",\"2.3\",\"12.7\",\"13.8\",\"13.6\",\"16.2\",\"16.7\",\"14.1\",\"1.9\",\"1.9\",\"1.5\",\"1.2\",\"1.3\",\"1.1\",\"2.6\",\"2.3\",\"1.3\",\"1.1\",\"1.0\",\"2.2\",\"2.7\",\"15.9\",\"12.3\",\"15.0\",\"17.8\",\"16.3\",\"1.4\",\"1.7\",\"1.6\",\"2.9\",\"2.7\",\"1.4\",\"1.7\",\"1.1\",\"2.2\",\"2.3\",\"2.8\",\"13.3\",\"12.4\",\"13.3\",\"14.8\",\"16.9\",\"18.9\",\"25.2\",\"1.9\",\"1.7\",\"1.7\",\"2.5\",\"3.0\",\"14.0\",\"13.7\",\"14.1\",\"15.0\",\"16.4\",\"15.4\",\"25.3\",\"23.1\",\"1.4\",\"1.1\",\"1.1\",\"3.0\",\"2.0\",\"2.4\",\"13.6\",\"12.9\",\"12.6\",\"17.9\",\"16.7\",\"1.9\",\"1.7\",\"1.9\",\"2.3\",\"2.1\",\"2.7\",\"12.3\",\"12.3\",\"12.4\",\"14.8\",\"18.5\",\"14.4\",\"1.9\",\"1.5\",\"1.0\",\"2.7\",\"2.5\",\"14.3\",\"14.5\",\"12.2\",\"15.7\",\"17.0\",\"18.1\",\"21.8\",\"21.6\",\"1.7\",\"1.4\",\"2.0\",\"2.0\",\"2.6\",\"14.1\",\"15.1\",\"15.6\",\"15.2\",\"14.8\",\"1.5\",\"1.5\",\"1.0\",\"2.2\",\"2.7\",\"12.5\",\"14.5\",\"12.9\",\"15.9\",\"15.8\",\"17.9\",\"1.7\",\"1.8\",\"1.6\",\"2.2\",\"2.6\",\"13.3\",\"15.6\",\"15.3\",\"1.9\",\"1.3\",\"1.2\",\"2.6\",\"2.8\",\"1.9\",\"1.6\",\"1.4\",\"2.1\",\"2.1\",\"1.1\",\"1.2\",\"1.3\",\"2.3\",\"2.8\",\"15.0\",\"15.5\",\"12.6\",\"14.0\",\"17.7\",\"18.1\",\"24.3\",\"23.7\",\"24.0\",\"2.0\",\"1.1\",\"1.3\",\"2.3\",\"2.9\",\"14.2\",\"15.0\",\"14.0\",\"14.2\",\"15.0\",\"17.5\",\"22.5\",\"20.0\",\"20.3\",\"2.0\",\"1.1\",\"1.6\",\"2.2\",\"2.1\",\"15.9\",\"12.8\",\"12.8\",\"17.6\",\"15.3\",\"1.3\",\"1.2\",\"1.8\",\"1.6\",\"1.8\",\"1.2\",\"1.8\",\"1.5\",\"1.6\",\"2.6\",\"2.8\",\"2.5\",\"15.7\",\"15.7\",\"1.3\",\"1.5\",\"1.1\",\"2.7\",\"2.6\",\"13.1\",\"15.6\",\"15.8\",\"18.8\",\"14.0\",\"1.5\",\"1.9\",\"1.2\",\"1.5\",\"1.7\",\"1.0\",\"2.4\",\"2.8\",\"2.2\",\"12.9\",\"16.0\",\"12.7\",\"15.5\",\"15.3\",\"15.7\",\"25.5\",\"21.5\",\"1.8\",\"1.1\",\"1.1\",\"2.9\",\"2.3\",\"1.9\",\"1.2\",\"1.4\",\"2.4\",\"2.4\",\"13.3\",\"14.7\",\"15.2\",\"2.0\",\"1.5\",\"2.0\",\"2.2\",\"2.2\",\"2.2\",\"13.3\",\"1.0\",\"1.5\",\"1.7\",\"1.6\",\"1.2\",\"2.0\",\"1.1\",\"3.0\",\"2.3\",\"13.4\",\"15.7\",\"16.0\",\"15.8\",\"1.8\",\"1.5\",\"1.1\",\"2.6\",\"1.6\",\"1.4\",\"1.5\",\"2.2\",\"2.7\",\"15.8\",\"13.5\",\"18.8\",\"18.8\",\"16.1\",\"22.3\",\"25.6\",\"23.4\",\"41.6\",\"43.9\",\"1.5\",\"1.7\",\"1.9\",\"2.2\",\"2.3\",\"12.6\",\"15.4\",\"15.7\",\"18.9\",\"14.7\",\"24.6\",\"22.2\",\"23.8\",\"40.6\",\"41.1\",\"42.8\",\"1.7\",\"1.4\",\"1.5\",\"2.3\",\"1.1\",\"1.4\",\"1.9\",\"2.3\",\"3.0\",\"15.8\",\"13.6\",\"12.9\",\"18.2\",\"18.5\",\"16.8\",\"22.3\",\"1.8\",\"1.8\",\"1.1\",\"3.0\",\"2.8\",\"2.7\",\"14.3\",\"14.7\",\"13.0\",\"16.1\",\"1.1\",\"1.7\",\"1.0\",\"2.3\",\"2.3\",\"12.5\",\"15.4\",\"14.1\",\"15.7\",\"17.0\",\"24.0\",\"24.9\",\"20.5\",\"1.3\",\"1.8\",\"1.7\",\"1.0\",\"1.8\",\"1.1\",\"2.0\",\"2.8\",\"14.1\",\"15.6\",\"14.6\",\"15.0\",\"15.6\",\"25.1\",\"26.0\",\"22.6\",\"2.0\",\"1.4\",\"1.4\",\"2.9\",\"2.1\",\"12.1\",\"14.2\",\"1.1\",\"1.6\",\"1.5\",\"2.9\",\"2.9\",\"1.6\",\"1.0\",\"1.0\",\"2.3\",\"1.0\",\"1.9\",\"1.4\",\"2.3\",\"2.2\",\"15.4\",\"12.8\",\"14.5\",\"17.1\",\"15.3\",\"17.9\",\"20.1\",\"22.9\",\"25.4\",\"1.3\",\"1.2\",\"1.1\",\"2.6\",\"2.9\",\"2.5\",\"15.4\",\"15.1\",\"12.5\",\"14.5\",\"18.2\",\"16.1\",\"23.2\",\"20.7\",\"1.0\",\"2.0\",\"1.2\",\"3.0\",\"2.9\",\"15.0\",\"12.9\",\"14.5\",\"15.6\",\"14.6\",\"21.5\",\"22.8\",\"23.0\",\"43.6\",\"44.7\",\"1.1\",\"1.9\",\"1.9\",\"2.6\",\"2.9\",\"12.7\",\"15.8\",\"18.7\",\"14.1\",\"18.2\",\"23.4\",\"20.2\",\"1.8\",\"1.6\",\"1.3\",\"2.6\",\"2.3\",\"12.3\",\"15.5\",\"15.6\",\"18.3\",\"14.5\",\"2.0\",\"1.3\",\"1.2\",\"2.2\",\"2.4\",\"1.1\",\"1.1\",\"2.0\",\"2.8\",\"2.6\",\"13.2\",\"15.7\",\"18.1\",\"15.8\",\"17.1\",\"24.5\",\"25.1\",\"21.3\",\"43.8\",\"41.8\",\"1.6\",\"1.1\",\"1.4\",\"2.0\",\"2.3\",\"13.1\",\"15.7\",\"1.8\",\"1.1\",\"1.0\",\"2.6\",\"2.1\",\"12.6\",\"12.7\",\"15.6\",\"16.4\",\"16.5\",\"18.4\",\"1.8\",\"1.0\",\"1.7\",\"2.3\",\"2.7\",\"13.6\",\"12.6\",\"15.1\",\"17.2\",\"16.2\",\"14.8\",\"21.0\",\"23.8\",\"20.0\",\"39.4\",\"1.4\",\"1.1\",\"1.9\",\"2.6\",\"1.5\",\"1.4\",\"1.6\",\"2.5\",\"2.9\",\"2.6\",\"12.9\",\"12.7\",\"1.7\",\"1.1\",\"1.3\",\"1.9\",\"1.1\",\"1.2\",\"2.6\",\"2.7\",\"12.7\",\"14.6\",\"14.7\",\"15.0\",\"18.6\",\"14.3\",\"20.6\",\"1.2\",\"1.5\",\"1.8\",\"2.9\",\"2.1\",\"13.6\",\"15.4\",\"16.5\",\"14.2\",\"15.8\",\"25.9\",\"25.9\",\"21.9\",\"44.8\",\"41.3\",\"1.4\",\"1.9\",\"1.8\",\"2.2\",\"2.7\",\"2.7\",\"1.9\",\"1.6\",\"1.2\",\"2.3\",\"2.6\",\"14.6\",\"12.8\",\"15.2\",\"14.2\",\"14.6\",\"14.1\",\"24.2\",\"21.5\",\"23.3\",\"43.5\",\"1.8\",\"1.5\",\"1.7\",\"2.7\",\"2.5\",\"2.1\",\"12.3\",\"1.8\",\"2.0\",\"1.8\",\"2.7\",\"2.7\",\"1.9\",\"1.3\",\"2.9\",\"2.9\",\"2.4\",\"13.2\",\"15.9\",\"1.5\",\"1.0\",\"1.7\",\"2.0\",\"2.7\",\"15.3\",\"12.9\",\"18.3\",\"1.3\",\"1.9\",\"1.8\",\"2.9\",\"1.1\",\"1.3\",\"1.2\",\"2.4\",\"2.8\",\"12.0\",\"13.0\",\"13.6\",\"18.9\",\"15.3\",\"18.4\",\"25.0\",\"24.3\",\"25.8\",\"1.4\",\"1.8\",\"1.5\",\"2.6\",\"2.1\",\"2.0\",\"12.4\",\"1.9\",\"1.5\",\"1.0\",\"2.9\",\"2.7\",\"13.6\",\"13.8\",\"12.4\",\"18.6\",\"15.8\",\"14.8\",\"25.7\",\"1.6\",\"1.3\",\"2.0\",\"1.6\",\"1.6\",\"1.9\",\"2.2\",\"2.3\",\"14.0\",\"12.1\",\"15.2\",\"15.9\",\"17.2\",\"17.1\",\"1.9\",\"1.6\",\"1.8\",\"2.1\",\"2.4\",\"15.6\",\"15.6\",\"13.9\",\"17.6\",\"15.3\",\"19.0\",\"1.7\",\"1.7\",\"1.9\",\"3.0\",\"2.4\",\"15.3\",\"15.3\",\"14.2\",\"18.3\",\"1.4\",\"1.4\",\"1.0\",\"2.9\",\"2.6\",\"2.5\",\"14.2\",\"14.3\",\"12.0\",\"17.3\",\"1.4\",\"1.5\",\"1.3\",\"1.2\",\"1.5\",\"1.3\",\"1.4\",\"1.0\",\"1.1\",\"2.8\",\"2.7\",\"14.0\",\"14.0\",\"15.8\",\"15.8\",\"14.5\",\"21.3\",\"22.1\",\"20.7\",\"41.3\",\"1.5\",\"1.4\",\"1.7\",\"2.3\",\"1.6\",\"1.7\",\"1.8\",\"2.8\",\"2.9\",\"14.2\",\"15.8\",\"15.8\",\"14.5\",\"1.7\",\"1.1\",\"1.1\",\"1.8\",\"1.7\",\"1.3\",\"2.3\",\"2.4\",\"2.7\",\"12.5\",\"14.9\",\"13.5\",\"17.7\",\"18.7\",\"14.4\",\"2.0\",\"1.2\",\"1.4\",\"2.7\",\"2.8\",\"13.2\",\"12.6\",\"12.9\",\"16.0\",\"18.2\",\"18.4\",\"20.8\"]},\"selected\":{\"id\":\"1323\"},\"selection_policy\":{\"id\":\"1322\"}},\"id\":\"1036\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"1258\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"1291\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"1312\",\"type\":\"AllLabels\"},{\"attributes\":{\"axis\":{\"id\":\"1198\"},\"coordinates\":null,\"grid_line_alpha\":0.25,\"grid_line_color\":\"#E0E0E0\",\"group\":null,\"ticker\":null},\"id\":\"1201\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1314\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"tools\":[{\"id\":\"1068\"},{\"id\":\"1069\"},{\"id\":\"1070\"},{\"id\":\"1071\"},{\"id\":\"1072\"},{\"id\":\"1073\"}]},\"id\":\"1075\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"1315\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"1068\",\"type\":\"PanTool\"},{\"attributes\":{\"source\":{\"id\":\"1272\"}},\"id\":\"1277\",\"type\":\"CDSView\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1272\"},\"glyph\":{\"id\":\"1273\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1275\"},\"nonselection_glyph\":{\"id\":\"1274\"},\"view\":{\"id\":\"1277\"}},\"id\":\"1276\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1180\"},\"glyph\":{\"id\":\"1181\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1183\"},\"nonselection_glyph\":{\"id\":\"1182\"},\"view\":{\"id\":\"1185\"}},\"id\":\"1184\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"axis\":{\"id\":\"1064\"},\"coordinates\":null,\"dimension\":1,\"grid_line_alpha\":0.25,\"grid_line_color\":\"#E0E0E0\",\"group\":null,\"ticker\":null},\"id\":\"1067\",\"type\":\"Grid\"},{\"attributes\":{\"child\":{\"id\":\"1141\"},\"title\":\"Troponin\"},\"id\":\"1186\",\"type\":\"Panel\"},{\"attributes\":{\"data\":{\"x\":[0,2,4,6,8,10,11,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,6,8,10,12,14,16,18,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,11,12,13,15,16,17,18,19,0,2,4,6,8,10,11,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,16,17,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,7,9,11,13,15,16,17,18,19,20,21,22,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,7,9,11,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,7,9,11,13,15,17,19,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,0,3,5,7,9,11,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,20,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,20,0,3,5,7,9,11,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,6,8,10,12,14,16,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,7,9,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,6,8,10,12,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,0,2,4,6,8,10,12,5,7,9,11,13,15,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,9,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,3,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,0,2,4,6,8,10,11,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,7,9,11,13,15,17,19,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,6,8,10,12,14,16,18,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,3,5,7,9,11,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,0,2,4,6,8,10,11,12,0,2,4,6,8,0,3,5,7,9,10,11,12,13,14,15,0,2,4,6,8,5,7,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,0,2,4,6,8,10,0,2,4,6,8,10,8,10,12,14,16,18,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,5,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,6,8,10,12,14,16,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,11,12,13,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,5,7,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,7,9,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,17,0,2,4,6,8,5,7,9,11,13,15,0,2,4,6,8,0,2,4,7,9,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,6,8,10,12,14,16,18,19,20,21,22,23,24,25,26,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,9,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,6,8,10,12,14,16,0,2,4,6,8,0,2,4,6,8,0,2,4,6,9,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,11,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,16,18,20,0,2,4,6,8,10,5,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,11,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,9,0,2,4,6,8,10,0,2,4,7,9,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,9,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,0,2,4,7,9,11,0,2,5,7,9,11,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,7,9,11,13,15,17,19,6,8,10,12,14,16,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,6,8,10,12,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,5,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,10,12,5,7,9,11,13,15,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,7,9,11,13,15,17,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,5,7,9,11,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,5,7,9,11,13,15,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,7,9,11,13,15,17,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,17,19,20,21,22,23,24,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,6,8,10,12,14,16,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,3,5,7,9,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,6,8,10,12,14,16,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,17,0,2,4,6,8,10,11,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,5,7,9,11,13,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,5,7,9,11,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,7,9,11,13,15,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,3,5,7,9,11,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,6,8,10,12,14,16,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,17,0,3,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,3,5,7,9,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,3,5,7,9,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,12,0,3,5,7,9,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,7,9,11,13,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,7,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,17,19,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,12,5,7,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,20,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,7,9,11,13,15,17,19,0,2,4,6,8,10,12,7,9,11,13,15,0,2,4,6,9,11,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,7,9,11,13,15,17,19,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8],\"y\":[\"3.4\",\"2.0\",\"3.3\",\"2.3\",\"2.7\",\"4.7\",\"4.4\",\"4.1\",\"2.4\",\"1.7\",\"2.4\",\"2.9\",\"2.1\",\"3.8\",\"4.9\",\"2.5\",\"2.1\",\"2.5\",\"2.3\",\"3.4\",\"3.3\",\"4.8\",\"3.2\",\"3.3\",\"2.0\",\"3.5\",\"2.4\",\"4.3\",\"1.9\",\"2.9\",\"2.6\",\"2.8\",\"2.5\",\"3.4\",\"2.5\",\"2.1\",\"2.5\",\"3.9\",\"3.7\",\"4.7\",\"4.5\",\"3.3\",\"1.7\",\"3.1\",\"3.3\",\"2.3\",\"4.0\",\"4.7\",\"1.7\",\"3.2\",\"2.3\",\"3.2\",\"3.2\",\"3.9\",\"4.3\",\"3.0\",\"2.5\",\"3.2\",\"3.7\",\"3.7\",\"3.9\",\"4.7\",\"2.5\",\"2.3\",\"3.3\",\"3.1\",\"4.0\",\"2.1\",\"2.7\",\"1.9\",\"2.1\",\"3.2\",\"2.5\",\"1.5\",\"2.1\",\"3.4\",\"2.2\",\"3.1\",\"3.4\",\"2.3\",\"3.2\",\"3.5\",\"2.3\",\"1.8\",\"3.5\",\"1.8\",\"2.2\",\"3.7\",\"3.4\",\"4.1\",\"1.9\",\"3.2\",\"3.4\",\"3.8\",\"2.4\",\"4.5\",\"4.7\",\"2.4\",\"2.4\",\"3.0\",\"3.5\",\"3.1\",\"2.4\",\"3.0\",\"1.6\",\"2.2\",\"2.1\",\"3.1\",\"1.9\",\"1.6\",\"3.1\",\"3.6\",\"3.1\",\"2.8\",\"1.8\",\"2.0\",\"3.7\",\"3.3\",\"2.3\",\"3.2\",\"3.2\",\"3.9\",\"2.8\",\"1.6\",\"2.4\",\"1.9\",\"3.7\",\"3.0\",\"3.3\",\"3.3\",\"3.0\",\"2.8\",\"2.8\",\"4.8\",\"4.8\",\"4.8\",\"3.4\",\"3.2\",\"2.8\",\"2.4\",\"3.3\",\"1.7\",\"1.5\",\"3.5\",\"3.1\",\"2.0\",\"4.8\",\"4.9\",\"1.5\",\"3.1\",\"1.9\",\"2.0\",\"2.9\",\"5.0\",\"2.1\",\"3.4\",\"2.5\",\"3.1\",\"2.6\",\"4.1\",\"1.9\",\"2.8\",\"2.9\",\"3.6\",\"2.6\",\"2.7\",\"1.9\",\"2.7\",\"3.8\",\"2.0\",\"3.2\",\"2.6\",\"3.4\",\"3.8\",\"2.8\",\"4.5\",\"4.9\",\"1.6\",\"2.7\",\"2.4\",\"3.1\",\"3.7\",\"3.3\",\"4.5\",\"2.2\",\"3.1\",\"1.8\",\"2.3\",\"2.1\",\"4.6\",\"1.9\",\"1.9\",\"3.3\",\"3.5\",\"2.5\",\"3.7\",\"3.3\",\"1.8\",\"1.5\",\"2.7\",\"2.3\",\"4.9\",\"5.0\",\"2.7\",\"2.9\",\"1.9\",\"4.0\",\"2.4\",\"1.8\",\"3.4\",\"2.9\",\"2.5\",\"2.9\",\"3.8\",\"4.8\",\"1.6\",\"1.9\",\"3.0\",\"2.6\",\"3.8\",\"3.9\",\"1.6\",\"2.6\",\"2.7\",\"2.5\",\"2.2\",\"3.1\",\"2.2\",\"2.6\",\"3.2\",\"3.9\",\"3.6\",\"2.4\",\"2.2\",\"2.9\",\"3.3\",\"3.5\",\"1.6\",\"2.6\",\"2.5\",\"3.1\",\"2.1\",\"3.8\",\"4.6\",\"4.6\",\"4.6\",\"2.0\",\"2.9\",\"2.9\",\"4.0\",\"3.4\",\"2.9\",\"1.8\",\"2.2\",\"4.0\",\"3.1\",\"3.4\",\"4.5\",\"2.5\",\"2.7\",\"1.6\",\"3.4\",\"3.3\",\"3.6\",\"4.3\",\"2.2\",\"3.0\",\"2.7\",\"3.5\",\"3.5\",\"3.6\",\"4.5\",\"3.4\",\"2.8\",\"3.1\",\"3.1\",\"2.6\",\"4.3\",\"3.1\",\"1.7\",\"3.5\",\"3.8\",\"3.9\",\"3.7\",\"4.9\",\"2.9\",\"1.6\",\"3.4\",\"4.0\",\"3.4\",\"4.1\",\"2.5\",\"3.1\",\"3.0\",\"2.8\",\"3.3\",\"5.0\",\"3.4\",\"3.2\",\"1.6\",\"3.8\",\"3.5\",\"2.0\",\"1.5\",\"2.0\",\"3.1\",\"3.8\",\"3.5\",\"2.3\",\"2.1\",\"3.7\",\"2.1\",\"2.0\",\"1.6\",\"3.3\",\"3.8\",\"3.6\",\"4.1\",\"2.3\",\"1.9\",\"2.3\",\"2.5\",\"3.1\",\"2.2\",\"3.3\",\"3.4\",\"3.8\",\"3.2\",\"2.9\",\"1.7\",\"2.3\",\"4.0\",\"2.9\",\"3.3\",\"2.6\",\"1.8\",\"3.2\",\"3.0\",\"3.6\",\"4.6\",\"1.6\",\"2.1\",\"2.6\",\"3.8\",\"2.3\",\"4.0\",\"1.5\",\"2.6\",\"1.7\",\"3.1\",\"2.4\",\"4.1\",\"4.9\",\"4.1\",\"2.7\",\"2.4\",\"2.3\",\"3.8\",\"3.0\",\"1.7\",\"1.8\",\"3.1\",\"2.1\",\"2.3\",\"3.3\",\"1.6\",\"3.7\",\"2.3\",\"4.5\",\"1.7\",\"2.4\",\"2.7\",\"2.4\",\"4.0\",\"3.7\",\"1.8\",\"2.1\",\"3.4\",\"2.7\",\"2.5\",\"2.6\",\"3.3\",\"2.2\",\"2.6\",\"2.7\",\"3.1\",\"1.8\",\"2.9\",\"2.6\",\"3.1\",\"2.9\",\"3.6\",\"4.5\",\"3.4\",\"3.0\",\"2.0\",\"2.9\",\"2.4\",\"4.1\",\"4.4\",\"4.5\",\"4.5\",\"2.3\",\"2.9\",\"2.9\",\"3.4\",\"3.3\",\"2.8\",\"3.0\",\"2.4\",\"2.6\",\"4.7\",\"2.8\",\"3.3\",\"1.9\",\"3.9\",\"4.0\",\"4.5\",\"3.1\",\"2.5\",\"2.9\",\"3.1\",\"3.3\",\"3.0\",\"4.4\",\"2.7\",\"2.1\",\"1.9\",\"2.4\",\"2.3\",\"3.0\",\"3.7\",\"4.4\",\"4.3\",\"4.3\",\"2.5\",\"2.4\",\"1.6\",\"1.6\",\"3.1\",\"2.1\",\"2.0\",\"4.9\",\"3.0\",\"3.3\",\"2.6\",\"3.4\",\"2.9\",\"3.1\",\"1.8\",\"2.0\",\"3.1\",\"3.7\",\"2.6\",\"2.3\",\"2.1\",\"3.3\",\"2.6\",\"2.9\",\"4.8\",\"2.8\",\"2.2\",\"2.1\",\"3.4\",\"3.4\",\"2.3\",\"3.5\",\"2.2\",\"2.0\",\"2.6\",\"1.6\",\"2.8\",\"1.6\",\"3.5\",\"3.2\",\"2.1\",\"3.3\",\"2.9\",\"3.7\",\"2.2\",\"3.1\",\"2.9\",\"1.8\",\"2.7\",\"2.7\",\"2.2\",\"4.4\",\"4.5\",\"1.7\",\"1.6\",\"3.3\",\"3.3\",\"3.0\",\"4.2\",\"4.4\",\"2.6\",\"2.4\",\"2.7\",\"2.4\",\"3.2\",\"4.1\",\"4.9\",\"4.8\",\"4.0\",\"4.1\",\"2.5\",\"3.0\",\"2.3\",\"3.5\",\"2.4\",\"3.9\",\"3.3\",\"3.9\",\"4.8\",\"4.2\",\"2.6\",\"2.0\",\"2.3\",\"2.5\",\"3.0\",\"3.6\",\"2.7\",\"2.3\",\"2.9\",\"3.3\",\"2.1\",\"1.8\",\"3.1\",\"2.0\",\"2.8\",\"3.2\",\"3.1\",\"4.3\",\"3.3\",\"2.3\",\"2.8\",\"2.1\",\"2.3\",\"2.1\",\"1.9\",\"1.6\",\"3.9\",\"2.1\",\"5.0\",\"2.7\",\"3.3\",\"3.0\",\"2.8\",\"3.3\",\"4.1\",\"2.9\",\"3.2\",\"3.0\",\"2.9\",\"3.6\",\"2.7\",\"3.5\",\"1.9\",\"2.8\",\"2.1\",\"4.9\",\"2.5\",\"3.2\",\"3.2\",\"2.8\",\"3.5\",\"2.9\",\"1.6\",\"2.0\",\"3.6\",\"3.4\",\"2.7\",\"3.0\",\"3.0\",\"2.8\",\"3.7\",\"1.7\",\"1.9\",\"1.8\",\"2.8\",\"3.8\",\"4.0\",\"4.1\",\"4.9\",\"2.4\",\"2.7\",\"2.2\",\"3.5\",\"3.2\",\"3.1\",\"1.8\",\"1.7\",\"2.1\",\"2.9\",\"3.0\",\"4.9\",\"3.4\",\"4.1\",\"5.0\",\"4.5\",\"2.8\",\"2.8\",\"1.8\",\"2.8\",\"3.7\",\"3.1\",\"4.6\",\"4.5\",\"1.6\",\"1.5\",\"2.3\",\"3.2\",\"3.5\",\"2.1\",\"2.5\",\"2.7\",\"2.5\",\"3.4\",\"4.6\",\"4.4\",\"1.6\",\"3.1\",\"2.4\",\"2.6\",\"3.1\",\"2.8\",\"2.3\",\"2.5\",\"2.6\",\"3.7\",\"1.9\",\"2.6\",\"2.6\",\"3.4\",\"2.1\",\"1.8\",\"3.1\",\"3.2\",\"3.3\",\"3.0\",\"3.5\",\"4.9\",\"2.6\",\"1.6\",\"3.2\",\"2.7\",\"3.1\",\"4.0\",\"4.8\",\"3.2\",\"1.8\",\"2.1\",\"2.4\",\"2.5\",\"4.2\",\"5.0\",\"3.5\",\"3.1\",\"1.6\",\"2.6\",\"2.4\",\"4.3\",\"4.3\",\"2.4\",\"2.5\",\"2.1\",\"2.9\",\"4.0\",\"2.1\",\"2.9\",\"2.4\",\"2.1\",\"2.3\",\"4.2\",\"1.8\",\"2.8\",\"3.1\",\"2.9\",\"3.3\",\"3.5\",\"1.6\",\"3.0\",\"2.4\",\"3.8\",\"3.9\",\"2.6\",\"2.3\",\"2.4\",\"3.0\",\"2.2\",\"3.7\",\"4.5\",\"2.3\",\"2.4\",\"2.2\",\"2.2\",\"2.5\",\"4.6\",\"3.0\",\"2.9\",\"2.8\",\"2.9\",\"3.0\",\"3.1\",\"2.2\",\"1.8\",\"3.2\",\"3.2\",\"2.9\",\"2.7\",\"2.2\",\"2.0\",\"3.5\",\"4.0\",\"4.8\",\"2.2\",\"3.1\",\"2.7\",\"3.0\",\"3.5\",\"3.5\",\"4.4\",\"3.3\",\"1.6\",\"1.8\",\"3.9\",\"3.8\",\"3.1\",\"4.3\",\"4.6\",\"2.3\",\"2.4\",\"2.2\",\"2.7\",\"3.3\",\"4.3\",\"4.9\",\"3.3\",\"2.3\",\"3.2\",\"2.8\",\"2.6\",\"3.4\",\"4.2\",\"3.1\",\"3.0\",\"3.4\",\"2.8\",\"3.3\",\"4.6\",\"4.8\",\"2.1\",\"2.0\",\"2.3\",\"3.7\",\"2.6\",\"4.1\",\"5.0\",\"4.2\",\"2.5\",\"2.0\",\"2.4\",\"2.8\",\"3.0\",\"3.3\",\"2.4\",\"3.5\",\"4.4\",\"4.9\",\"4.3\",\"2.1\",\"3.1\",\"2.5\",\"2.8\",\"2.7\",\"3.6\",\"3.3\",\"4.9\",\"4.8\",\"4.7\",\"2.7\",\"2.7\",\"3.3\",\"2.8\",\"2.5\",\"3.6\",\"3.1\",\"4.7\",\"2.0\",\"1.9\",\"1.7\",\"2.4\",\"2.7\",\"4.6\",\"4.5\",\"2.7\",\"2.9\",\"2.1\",\"2.9\",\"3.0\",\"3.0\",\"2.2\",\"3.0\",\"3.9\",\"3.6\",\"4.2\",\"4.3\",\"3.3\",\"2.4\",\"1.7\",\"2.4\",\"3.7\",\"4.7\",\"2.6\",\"2.8\",\"2.9\",\"3.1\",\"2.3\",\"1.9\",\"2.8\",\"3.3\",\"2.1\",\"3.6\",\"2.4\",\"3.0\",\"1.8\",\"2.3\",\"3.2\",\"4.7\",\"4.8\",\"1.9\",\"2.0\",\"2.4\",\"2.7\",\"2.4\",\"4.6\",\"4.9\",\"4.5\",\"4.9\",\"2.0\",\"2.3\",\"3.1\",\"2.3\",\"1.7\",\"2.0\",\"2.9\",\"3.7\",\"2.3\",\"2.3\",\"2.3\",\"2.1\",\"3.5\",\"4.4\",\"4.6\",\"1.7\",\"3.3\",\"2.1\",\"3.6\",\"2.7\",\"3.5\",\"4.8\",\"2.0\",\"2.1\",\"2.9\",\"3.6\",\"3.7\",\"3.4\",\"3.2\",\"4.4\",\"2.9\",\"2.1\",\"2.8\",\"2.7\",\"2.5\",\"2.8\",\"1.6\",\"2.5\",\"2.5\",\"2.0\",\"3.7\",\"1.6\",\"2.1\",\"2.7\",\"3.9\",\"3.8\",\"4.8\",\"4.6\",\"1.6\",\"1.8\",\"2.7\",\"3.1\",\"3.4\",\"2.1\",\"2.6\",\"2.1\",\"2.8\",\"2.3\",\"2.1\",\"1.7\",\"1.8\",\"3.4\",\"2.9\",\"3.3\",\"2.1\",\"1.8\",\"2.2\",\"3.2\",\"2.1\",\"4.0\",\"1.6\",\"2.1\",\"3.0\",\"2.3\",\"3.4\",\"2.4\",\"2.9\",\"1.6\",\"2.8\",\"2.7\",\"2.9\",\"3.3\",\"1.7\",\"2.4\",\"3.1\",\"4.9\",\"4.2\",\"4.7\",\"2.7\",\"2.3\",\"3.0\",\"4.0\",\"2.6\",\"2.5\",\"2.7\",\"3.3\",\"2.8\",\"3.8\",\"4.3\",\"2.0\",\"3.0\",\"2.4\",\"3.6\",\"3.7\",\"4.4\",\"3.3\",\"1.5\",\"2.2\",\"3.3\",\"3.2\",\"4.5\",\"4.5\",\"1.7\",\"3.3\",\"2.6\",\"3.1\",\"3.2\",\"4.6\",\"3.0\",\"1.9\",\"3.3\",\"2.6\",\"4.0\",\"2.4\",\"1.9\",\"2.0\",\"3.5\",\"2.5\",\"3.5\",\"2.5\",\"1.6\",\"2.0\",\"3.3\",\"3.2\",\"3.4\",\"2.8\",\"2.7\",\"3.4\",\"2.6\",\"3.9\",\"2.4\",\"1.9\",\"3.0\",\"3.6\",\"3.6\",\"2.4\",\"2.3\",\"3.3\",\"3.9\",\"2.5\",\"2.9\",\"3.2\",\"3.4\",\"3.4\",\"3.0\",\"4.8\",\"4.1\",\"3.5\",\"2.3\",\"3.0\",\"3.9\",\"2.6\",\"3.2\",\"4.6\",\"1.6\",\"1.7\",\"3.0\",\"2.7\",\"4.0\",\"3.2\",\"2.1\",\"3.2\",\"2.5\",\"2.3\",\"1.9\",\"1.9\",\"2.5\",\"3.1\",\"2.3\",\"2.4\",\"1.7\",\"2.0\",\"2.1\",\"4.0\",\"3.0\",\"2.5\",\"1.6\",\"3.0\",\"3.2\",\"3.3\",\"1.6\",\"2.1\",\"1.7\",\"3.9\",\"2.2\",\"3.6\",\"4.7\",\"1.6\",\"1.9\",\"1.9\",\"3.8\",\"2.2\",\"4.5\",\"4.2\",\"3.3\",\"3.4\",\"2.2\",\"3.1\",\"3.1\",\"2.1\",\"2.8\",\"2.2\",\"2.9\",\"2.0\",\"3.3\",\"2.8\",\"2.3\",\"2.8\",\"3.2\",\"1.6\",\"1.5\",\"2.7\",\"2.2\",\"2.3\",\"1.5\",\"1.9\",\"2.1\",\"2.0\",\"3.9\",\"3.7\",\"4.7\",\"3.2\",\"1.9\",\"2.8\",\"3.6\",\"4.0\",\"2.4\",\"2.8\",\"1.8\",\"2.9\",\"3.6\",\"3.5\",\"4.6\",\"3.1\",\"2.5\",\"2.4\",\"2.7\",\"3.1\",\"2.3\",\"1.5\",\"3.4\",\"3.4\",\"3.7\",\"4.6\",\"4.3\",\"2.3\",\"2.2\",\"2.7\",\"3.8\",\"2.8\",\"4.4\",\"4.5\",\"4.9\",\"2.1\",\"2.4\",\"2.6\",\"3.6\",\"3.4\",\"3.3\",\"2.2\",\"2.9\",\"1.9\",\"1.6\",\"2.4\",\"3.0\",\"4.7\",\"2.7\",\"3.0\",\"2.8\",\"3.9\",\"3.2\",\"2.6\",\"2.8\",\"2.7\",\"3.9\",\"3.6\",\"3.4\",\"4.4\",\"2.3\",\"2.3\",\"2.2\",\"2.0\",\"2.2\",\"4.9\",\"4.4\",\"2.8\",\"3.2\",\"1.9\",\"3.4\",\"3.0\",\"3.6\",\"2.0\",\"1.7\",\"2.9\",\"3.2\",\"3.6\",\"4.7\",\"4.1\",\"4.8\",\"4.9\",\"2.1\",\"2.8\",\"2.8\",\"3.5\",\"2.1\",\"3.0\",\"4.1\",\"4.1\",\"1.5\",\"2.3\",\"3.3\",\"3.4\",\"3.1\",\"3.9\",\"2.0\",\"2.6\",\"1.6\",\"3.3\",\"2.4\",\"4.4\",\"4.7\",\"2.7\",\"2.7\",\"3.2\",\"2.6\",\"2.9\",\"4.4\",\"2.2\",\"3.5\",\"2.1\",\"2.3\",\"2.4\",\"1.9\",\"3.0\",\"2.6\",\"2.8\",\"2.9\",\"3.8\",\"5.0\",\"2.1\",\"2.7\",\"1.7\",\"3.7\",\"3.6\",\"3.0\",\"4.4\",\"4.0\",\"2.7\",\"2.7\",\"2.7\",\"3.9\",\"2.5\",\"2.6\",\"2.8\",\"2.3\",\"3.8\",\"3.7\",\"4.5\",\"2.5\",\"2.5\",\"2.6\",\"3.8\",\"3.4\",\"2.4\",\"1.9\",\"2.1\",\"2.6\",\"2.1\",\"3.4\",\"2.9\",\"3.2\",\"2.0\",\"3.5\",\"3.0\",\"1.7\",\"2.7\",\"2.1\",\"2.1\",\"2.9\",\"4.8\",\"4.6\",\"3.1\",\"3.2\",\"3.3\",\"2.8\",\"3.7\",\"3.8\",\"2.0\",\"3.2\",\"3.2\",\"3.0\",\"2.5\",\"3.7\",\"2.1\",\"3.2\",\"2.2\",\"2.8\",\"2.5\",\"3.9\",\"4.3\",\"2.7\",\"2.5\",\"2.9\",\"3.0\",\"3.5\",\"4.2\",\"1.9\",\"2.9\",\"2.3\",\"3.8\",\"2.9\",\"3.4\",\"1.7\",\"1.7\",\"2.6\",\"3.8\",\"3.9\",\"2.4\",\"2.1\",\"2.0\",\"3.8\",\"2.3\",\"2.8\",\"2.9\",\"2.6\",\"3.6\",\"2.6\",\"4.6\",\"2.3\",\"2.1\",\"1.8\",\"3.6\",\"3.5\",\"1.9\",\"2.0\",\"2.4\",\"3.5\",\"3.8\",\"4.4\",\"2.7\",\"1.8\",\"2.8\",\"2.2\",\"2.1\",\"3.2\",\"4.7\",\"1.6\",\"3.0\",\"3.0\",\"3.6\",\"2.6\",\"4.2\",\"2.3\",\"2.8\",\"2.2\",\"3.8\",\"2.1\",\"3.7\",\"1.8\",\"1.8\",\"2.0\",\"2.3\",\"2.2\",\"4.5\",\"1.8\",\"3.0\",\"2.6\",\"3.2\",\"3.6\",\"3.7\",\"3.1\",\"3.1\",\"3.2\",\"3.6\",\"3.6\",\"1.6\",\"1.7\",\"1.8\",\"2.3\",\"2.5\",\"3.0\",\"3.3\",\"3.1\",\"2.6\",\"2.1\",\"3.8\",\"4.8\",\"1.9\",\"3.4\",\"2.4\",\"3.6\",\"3.7\",\"3.7\",\"4.1\",\"2.4\",\"1.5\",\"3.5\",\"2.6\",\"2.3\",\"3.7\",\"3.7\",\"4.4\",\"4.8\",\"4.0\",\"2.0\",\"2.9\",\"3.4\",\"2.8\",\"2.6\",\"3.3\",\"3.6\",\"3.3\",\"1.9\",\"1.5\",\"2.8\",\"2.2\",\"4.7\",\"2.5\",\"2.3\",\"3.3\",\"3.3\",\"2.3\",\"4.3\",\"3.1\",\"2.6\",\"3.3\",\"3.7\",\"3.1\",\"4.0\",\"3.4\",\"3.1\",\"3.4\",\"2.5\",\"2.8\",\"4.7\",\"4.6\",\"2.5\",\"2.4\",\"3.2\",\"2.7\",\"3.5\",\"2.3\",\"3.1\",\"2.6\",\"2.7\",\"2.2\",\"3.6\",\"3.2\",\"3.2\",\"3.0\",\"3.9\",\"3.2\",\"3.4\",\"4.7\",\"1.5\",\"3.3\",\"3.1\",\"3.0\",\"2.5\",\"2.5\",\"2.3\",\"1.8\",\"2.6\",\"2.8\",\"4.3\",\"1.7\",\"2.2\",\"2.6\",\"2.6\",\"3.1\",\"3.0\",\"2.6\",\"2.3\",\"2.7\",\"2.4\",\"3.4\",\"4.5\",\"3.3\",\"1.9\",\"3.1\",\"2.9\",\"2.7\",\"2.2\",\"2.7\",\"2.2\",\"2.6\",\"3.7\",\"2.0\",\"1.7\",\"3.1\",\"2.1\",\"3.6\",\"1.6\",\"2.6\",\"2.1\",\"3.0\",\"3.0\",\"4.3\",\"4.2\",\"2.8\",\"1.7\",\"3.1\",\"2.5\",\"3.3\",\"4.8\",\"3.0\",\"2.9\",\"2.4\",\"2.7\",\"2.9\",\"2.0\",\"3.0\",\"2.5\",\"3.7\",\"2.8\",\"3.8\",\"5.0\",\"1.8\",\"2.9\",\"2.9\",\"3.6\",\"2.9\",\"4.2\",\"4.3\",\"2.1\",\"2.8\",\"2.5\",\"4.0\",\"2.1\",\"3.8\",\"4.4\",\"2.0\",\"1.7\",\"1.8\",\"3.7\",\"2.6\",\"3.3\",\"3.2\",\"2.6\",\"2.8\",\"3.9\",\"3.2\",\"3.0\",\"2.9\",\"2.4\",\"3.8\",\"3.7\",\"2.4\",\"2.4\",\"2.6\",\"4.0\",\"2.1\",\"2.6\",\"2.1\",\"2.0\",\"2.8\",\"3.4\",\"3.6\",\"3.4\",\"1.9\",\"3.2\",\"2.4\",\"3.7\",\"3.6\",\"4.1\",\"4.6\",\"3.1\",\"2.4\",\"2.7\",\"2.7\",\"2.2\",\"3.1\",\"4.1\",\"3.0\",\"3.2\",\"2.9\",\"3.8\",\"2.2\",\"3.4\",\"4.9\",\"3.1\",\"3.0\",\"1.5\",\"2.5\",\"2.9\",\"3.7\",\"2.4\",\"3.1\",\"2.7\",\"3.4\",\"3.0\",\"4.9\",\"4.9\",\"4.3\",\"3.0\",\"2.6\",\"2.7\",\"2.8\",\"1.7\",\"2.8\",\"4.0\",\"3.4\",\"2.5\",\"1.9\",\"1.8\",\"3.0\",\"2.6\",\"4.8\",\"4.2\",\"3.3\",\"2.3\",\"2.1\",\"3.1\",\"3.3\",\"2.8\",\"2.1\",\"1.7\",\"3.6\",\"2.9\",\"3.6\",\"4.8\",\"1.9\",\"2.9\",\"3.0\",\"2.2\",\"2.8\",\"4.7\",\"4.2\",\"1.9\",\"3.0\",\"3.1\",\"3.6\",\"2.1\",\"3.2\",\"4.7\",\"3.1\",\"2.9\",\"2.1\",\"2.3\",\"3.1\",\"3.8\",\"5.0\",\"1.9\",\"2.4\",\"2.5\",\"3.6\",\"3.9\",\"4.3\",\"2.8\",\"2.2\",\"1.9\",\"3.5\",\"3.5\",\"3.8\",\"5.0\",\"2.5\",\"2.4\",\"1.8\",\"3.2\",\"2.3\",\"4.7\",\"4.0\",\"1.8\",\"3.5\",\"1.8\",\"2.9\",\"3.2\",\"4.6\",\"4.1\",\"1.8\",\"2.3\",\"2.4\",\"2.1\",\"2.4\",\"2.5\",\"3.5\",\"3.0\",\"3.6\",\"3.8\",\"4.5\",\"3.1\",\"1.8\",\"2.3\",\"2.9\",\"2.1\",\"2.1\",\"2.8\",\"3.1\",\"3.3\",\"2.4\",\"3.2\",\"2.6\",\"2.5\",\"2.2\",\"2.6\",\"3.0\",\"2.8\",\"3.3\",\"3.0\",\"2.7\",\"3.4\",\"4.7\",\"4.6\",\"5.0\",\"4.9\",\"2.8\",\"2.9\",\"2.1\",\"2.5\",\"2.9\",\"3.3\",\"3.2\",\"2.2\",\"2.1\",\"2.8\",\"3.9\",\"3.3\",\"4.5\",\"4.8\",\"4.4\",\"2.1\",\"2.2\",\"2.5\",\"3.8\",\"3.3\",\"4.0\",\"2.4\",\"2.4\",\"2.0\",\"2.6\",\"4.0\",\"2.7\",\"4.8\",\"3.2\",\"3.4\",\"3.2\",\"2.7\",\"2.1\",\"3.0\",\"3.1\",\"1.9\",\"3.2\",\"2.8\",\"1.9\",\"2.9\",\"2.0\",\"3.6\",\"3.8\",\"3.1\",\"2.4\",\"3.1\",\"3.0\",\"3.7\",\"2.6\",\"4.8\",\"4.4\",\"2.4\",\"3.3\",\"2.6\",\"3.6\",\"3.6\",\"4.5\",\"3.3\",\"1.6\",\"2.3\",\"2.2\",\"3.7\",\"3.6\",\"3.1\",\"2.0\",\"2.0\",\"3.3\",\"3.2\",\"4.9\",\"1.9\",\"2.6\",\"1.8\",\"3.5\",\"2.3\",\"1.6\",\"2.0\",\"3.4\",\"3.1\",\"2.1\",\"2.2\",\"2.2\",\"1.6\",\"3.8\",\"2.0\",\"3.9\",\"4.2\",\"1.7\",\"2.4\",\"1.9\",\"2.6\",\"3.9\",\"3.2\",\"3.4\",\"2.0\",\"2.6\",\"2.7\",\"2.6\",\"4.9\",\"4.5\",\"3.3\",\"2.4\",\"2.9\",\"3.0\",\"3.6\",\"3.1\",\"1.6\",\"2.6\",\"1.8\",\"3.4\",\"3.1\",\"3.2\",\"4.5\",\"3.0\",\"1.9\",\"2.2\",\"2.2\",\"2.7\",\"3.9\",\"2.3\",\"1.8\",\"2.2\",\"3.8\",\"3.4\",\"4.2\",\"4.5\",\"2.4\",\"2.5\",\"2.2\",\"2.3\",\"3.0\",\"3.8\",\"4.8\",\"2.7\",\"3.0\",\"2.9\",\"2.2\",\"3.0\",\"5.0\",\"4.6\",\"1.5\",\"1.8\",\"2.8\",\"3.3\",\"2.1\",\"4.7\",\"4.4\",\"3.1\",\"2.1\",\"2.1\",\"3.3\",\"3.7\",\"4.4\",\"3.1\",\"1.7\",\"3.2\",\"4.0\",\"3.9\",\"3.1\",\"2.9\",\"2.5\",\"3.4\",\"3.8\",\"2.3\",\"4.2\",\"4.7\",\"4.8\",\"4.4\",\"4.5\",\"2.0\",\"2.5\",\"2.3\",\"2.1\",\"2.6\",\"2.8\",\"2.9\",\"4.2\",\"4.4\",\"2.7\",\"2.4\",\"2.8\",\"3.4\",\"3.6\",\"4.6\",\"2.7\",\"3.3\",\"1.8\",\"2.5\",\"2.9\",\"3.2\",\"2.2\",\"1.7\",\"2.8\",\"3.0\",\"3.2\",\"3.5\",\"4.5\",\"2.0\",\"2.7\",\"1.5\",\"2.1\",\"2.9\",\"5.0\",\"3.0\",\"2.1\",\"2.0\",\"2.3\",\"2.1\",\"3.5\",\"4.5\",\"3.1\",\"1.7\",\"2.8\",\"3.9\",\"2.4\",\"3.1\",\"3.9\",\"2.2\",\"2.2\",\"2.4\",\"3.5\",\"3.3\",\"3.3\",\"4.6\",\"2.1\",\"2.0\",\"3.4\",\"3.6\",\"3.7\",\"4.2\",\"4.0\",\"2.7\",\"3.1\",\"2.8\",\"2.8\",\"3.7\",\"4.2\",\"2.3\",\"2.0\",\"1.9\",\"3.2\",\"2.3\",\"4.0\",\"4.5\",\"4.4\",\"2.0\",\"2.5\",\"2.0\",\"3.4\",\"2.4\",\"5.0\",\"4.8\",\"3.2\",\"3.2\",\"3.0\",\"3.7\",\"3.2\",\"1.7\",\"2.0\",\"3.1\",\"3.5\",\"3.7\",\"4.7\",\"3.1\",\"2.5\",\"2.4\",\"2.8\",\"3.6\",\"3.0\",\"4.6\",\"2.7\",\"1.8\",\"3.3\",\"3.9\",\"3.2\",\"3.1\",\"2.0\",\"2.3\",\"3.1\",\"2.1\",\"2.0\",\"3.6\",\"2.4\",\"2.1\",\"2.1\",\"2.6\",\"3.1\",\"3.7\",\"4.5\",\"2.4\",\"2.7\",\"2.7\",\"2.9\",\"2.3\",\"3.1\",\"3.3\",\"2.6\",\"2.8\",\"2.3\",\"4.5\",\"4.9\",\"2.9\",\"2.8\",\"3.2\",\"2.6\",\"3.8\",\"3.6\",\"4.4\",\"2.3\",\"3.3\",\"1.7\",\"3.8\",\"2.9\",\"4.5\",\"5.0\",\"4.2\",\"4.4\",\"1.9\",\"3.0\",\"2.7\",\"3.7\",\"3.0\",\"3.3\",\"2.6\",\"1.8\",\"3.1\",\"3.2\",\"3.5\",\"4.9\",\"4.4\",\"2.5\",\"1.7\",\"2.6\",\"2.9\",\"2.9\",\"3.4\",\"3.4\",\"3.2\",\"3.9\",\"2.8\",\"4.3\",\"3.1\",\"3.0\",\"3.2\",\"3.3\",\"2.8\",\"4.5\",\"3.0\",\"1.6\",\"1.6\",\"2.9\",\"3.2\",\"4.5\",\"4.6\",\"3.1\",\"3.5\",\"2.5\",\"2.9\",\"3.5\",\"4.5\",\"4.8\",\"5.0\",\"2.4\",\"2.8\",\"2.6\",\"2.4\",\"2.8\",\"3.2\",\"3.4\",\"2.9\",\"3.2\",\"4.0\",\"2.5\",\"2.0\",\"3.0\",\"2.0\",\"3.0\",\"3.2\",\"2.4\",\"2.4\",\"2.8\",\"3.1\",\"4.7\",\"4.9\",\"4.3\",\"2.3\",\"2.1\",\"2.5\",\"3.3\",\"3.8\",\"3.9\",\"2.2\",\"1.9\",\"2.0\",\"3.3\",\"3.3\",\"2.7\",\"2.5\",\"3.5\",\"2.4\",\"2.3\",\"3.3\",\"4.9\",\"4.8\",\"4.3\",\"4.8\",\"2.4\",\"2.1\",\"2.9\",\"1.5\",\"3.2\",\"2.4\",\"3.5\",\"4.4\",\"4.4\",\"3.1\",\"3.3\",\"2.1\",\"3.5\",\"2.4\",\"3.0\",\"3.3\",\"2.1\",\"2.3\",\"3.8\",\"4.0\",\"4.6\",\"1.6\",\"1.8\",\"3.5\",\"2.2\",\"3.5\",\"4.4\",\"4.5\",\"2.7\",\"3.3\",\"2.8\",\"3.3\",\"2.1\",\"4.4\",\"4.9\",\"3.5\",\"2.4\",\"3.0\",\"3.4\",\"3.3\",\"3.2\",\"1.7\",\"1.8\",\"3.2\",\"3.6\",\"4.2\",\"2.8\",\"3.0\",\"1.5\",\"3.2\",\"3.0\",\"4.7\",\"4.9\",\"1.7\",\"2.3\",\"2.7\",\"2.1\",\"2.4\",\"4.0\",\"4.0\",\"2.0\",\"3.1\",\"2.1\",\"3.6\",\"3.5\",\"3.6\",\"4.7\",\"2.1\",\"1.5\",\"2.4\",\"3.0\",\"2.8\",\"1.6\",\"3.1\",\"3.4\",\"3.7\",\"4.0\",\"3.2\",\"1.6\",\"2.6\",\"3.4\",\"3.9\",\"4.7\",\"4.1\",\"3.2\",\"2.0\",\"2.9\",\"3.1\",\"3.4\",\"3.2\",\"2.8\",\"3.1\",\"1.7\",\"3.2\",\"2.5\",\"3.5\",\"4.6\",\"2.9\",\"3.5\",\"2.5\",\"2.6\",\"2.6\",\"2.8\",\"3.2\",\"3.0\",\"3.5\",\"2.8\",\"3.6\",\"4.7\",\"2.8\",\"1.9\",\"1.8\",\"2.6\",\"2.4\",\"3.5\",\"2.9\",\"3.0\",\"2.6\",\"2.9\",\"4.9\",\"5.0\",\"2.9\",\"2.3\",\"2.4\",\"2.7\",\"2.9\",\"3.2\",\"3.5\",\"1.9\",\"2.3\",\"2.9\",\"4.0\",\"2.7\",\"3.4\",\"2.9\",\"3.2\",\"2.8\",\"1.7\",\"1.6\",\"2.2\",\"2.5\",\"3.8\",\"1.8\",\"1.7\",\"3.2\",\"2.4\",\"4.0\",\"3.6\",\"2.4\",\"2.2\",\"1.8\",\"2.1\",\"3.4\",\"4.6\",\"2.4\",\"2.8\",\"2.3\",\"2.9\",\"2.7\",\"4.5\",\"4.3\",\"4.1\",\"4.8\",\"3.0\",\"2.4\",\"2.6\",\"2.3\",\"3.1\",\"2.0\",\"2.1\",\"2.9\",\"3.9\",\"4.8\",\"4.6\",\"4.2\",\"4.4\",\"2.6\",\"2.4\",\"3.3\",\"3.6\",\"3.9\",\"1.6\",\"3.5\",\"3.4\",\"3.2\",\"2.1\",\"3.9\",\"5.0\",\"2.8\",\"3.1\",\"2.8\",\"2.3\",\"3.2\",\"2.1\",\"2.3\",\"1.6\",\"3.0\",\"3.8\",\"3.3\",\"2.1\",\"3.1\",\"2.1\",\"3.3\",\"4.9\",\"2.8\",\"2.5\",\"2.3\",\"2.9\",\"3.8\",\"4.1\",\"4.7\",\"3.3\",\"3.2\",\"2.1\",\"2.2\",\"2.5\",\"4.7\",\"2.3\",\"1.7\",\"2.9\",\"2.6\",\"2.4\",\"4.4\",\"3.2\",\"2.2\",\"2.2\",\"3.6\",\"2.3\",\"4.6\",\"4.9\",\"2.0\",\"3.0\",\"2.4\",\"2.7\",\"2.9\",\"4.8\",\"2.0\",\"2.7\",\"2.0\",\"3.5\",\"3.4\",\"3.5\",\"2.4\",\"1.7\",\"1.7\",\"3.8\",\"2.4\",\"3.2\",\"4.1\",\"2.4\",\"1.7\",\"3.1\",\"3.0\",\"3.8\",\"3.9\",\"1.5\",\"3.4\",\"3.4\",\"3.6\",\"2.4\",\"3.4\",\"1.7\",\"1.5\",\"3.6\",\"3.2\",\"3.0\",\"3.5\",\"1.9\",\"2.6\",\"4.0\",\"2.6\",\"2.3\",\"1.6\",\"3.1\",\"3.4\",\"3.0\",\"1.9\",\"2.3\",\"2.9\",\"3.0\",\"3.1\",\"1.7\",\"3.0\",\"2.4\",\"2.9\",\"3.0\",\"2.2\",\"2.5\",\"2.9\",\"3.7\",\"2.4\",\"2.1\",\"2.0\",\"3.8\",\"3.5\",\"4.0\",\"2.6\",\"2.2\",\"1.7\",\"2.4\",\"3.7\",\"1.9\",\"1.9\",\"3.0\",\"3.8\",\"3.3\",\"3.8\",\"3.4\",\"1.9\",\"3.1\",\"3.1\",\"3.3\",\"3.3\",\"2.1\",\"2.0\",\"2.7\",\"3.2\",\"2.5\",\"4.8\",\"4.1\",\"2.8\",\"1.9\",\"1.7\",\"3.2\",\"3.7\",\"2.6\",\"1.8\",\"2.7\",\"2.7\",\"2.2\",\"4.3\",\"3.0\",\"2.3\",\"3.5\",\"3.0\",\"3.9\",\"3.3\",\"2.9\",\"3.1\",\"3.1\",\"3.6\",\"4.0\",\"4.2\",\"4.2\",\"4.7\",\"4.9\",\"2.9\",\"2.2\",\"2.2\",\"3.2\",\"2.4\",\"2.4\",\"3.1\",\"3.9\",\"4.2\",\"1.6\",\"2.2\",\"2.3\",\"3.7\",\"3.7\",\"2.9\",\"3.1\",\"1.6\",\"4.0\",\"3.6\",\"4.0\",\"2.8\",\"3.3\",\"2.4\",\"2.2\",\"3.9\",\"3.7\",\"4.8\",\"2.2\",\"2.7\",\"3.2\",\"2.4\",\"2.9\",\"1.7\",\"3.3\",\"3.3\",\"2.6\",\"2.6\",\"4.2\",\"5.0\",\"3.0\",\"2.8\",\"2.7\",\"2.3\",\"2.2\",\"3.7\",\"2.7\",\"3.5\",\"3.3\",\"3.8\",\"2.8\",\"3.8\",\"4.6\",\"3.3\",\"2.8\",\"2.3\",\"2.9\",\"4.0\",\"2.3\",\"1.9\",\"3.0\",\"3.5\",\"3.8\",\"3.0\",\"2.7\",\"2.6\",\"2.6\",\"2.2\",\"2.7\",\"3.4\",\"4.8\",\"3.2\",\"3.4\",\"1.9\",\"2.2\",\"3.0\",\"1.6\",\"1.7\",\"2.8\",\"3.6\",\"3.9\",\"3.4\",\"2.7\",\"2.3\",\"3.3\",\"2.8\",\"3.1\",\"2.2\",\"3.1\",\"3.0\",\"2.2\",\"4.1\",\"4.8\",\"2.2\",\"3.3\",\"2.4\",\"2.1\",\"2.0\",\"3.4\",\"1.9\",\"2.2\",\"2.5\",\"3.6\",\"4.4\",\"4.8\",\"4.6\",\"3.2\",\"2.2\",\"2.1\",\"3.5\",\"2.8\",\"2.5\",\"3.0\",\"2.1\",\"3.9\",\"3.8\",\"4.8\",\"4.6\",\"2.3\",\"1.9\",\"2.2\",\"3.2\",\"3.5\",\"4.0\",\"4.1\",\"2.3\",\"2.9\",\"3.3\",\"3.0\",\"3.7\",\"4.6\",\"1.5\",\"2.0\",\"1.8\",\"2.2\",\"3.6\",\"3.4\",\"2.5\",\"1.7\",\"3.3\",\"2.2\",\"3.6\",\"2.9\",\"2.7\",\"2.5\",\"2.2\",\"2.4\",\"4.5\",\"4.3\",\"3.2\",\"1.7\",\"3.1\",\"2.8\",\"3.9\",\"3.2\",\"1.8\",\"2.6\",\"3.2\",\"2.1\",\"4.1\",\"2.2\",\"2.3\",\"3.4\",\"2.9\",\"3.0\",\"4.6\",\"4.7\",\"4.6\",\"4.2\",\"2.5\",\"3.1\",\"1.5\",\"3.4\",\"2.1\",\"4.8\",\"2.9\",\"3.2\",\"3.1\",\"3.4\",\"2.8\",\"2.4\",\"1.9\",\"2.4\",\"2.9\",\"3.9\",\"4.9\",\"4.7\",\"3.0\",\"3.4\",\"3.2\",\"2.3\",\"2.9\",\"3.3\",\"3.2\",\"2.2\",\"1.9\",\"3.5\",\"3.3\",\"3.7\",\"3.4\",\"2.5\",\"1.6\",\"2.7\",\"3.2\",\"3.4\",\"2.8\",\"3.4\",\"2.1\",\"3.4\",\"3.4\",\"3.9\",\"4.8\",\"4.4\",\"4.0\",\"2.6\",\"1.6\",\"2.6\",\"2.7\",\"3.3\",\"2.4\",\"4.4\",\"4.2\",\"3.1\",\"2.7\",\"1.7\",\"3.3\",\"3.1\",\"3.5\",\"2.6\",\"1.6\",\"2.3\",\"2.8\",\"3.4\",\"4.4\",\"4.8\",\"2.6\",\"2.2\",\"3.1\",\"3.4\",\"3.9\",\"3.2\",\"4.8\",\"2.8\",\"2.4\",\"2.7\",\"3.2\",\"2.1\",\"3.9\",\"4.5\",\"2.7\",\"2.4\",\"3.4\",\"3.0\",\"2.5\",\"4.2\",\"4.5\",\"4.8\",\"4.4\",\"1.6\",\"2.0\",\"3.2\",\"3.4\",\"2.1\",\"3.6\",\"4.8\",\"1.5\",\"2.8\",\"2.9\",\"3.8\",\"3.7\",\"3.1\",\"4.9\",\"2.3\",\"3.2\",\"3.2\",\"3.9\",\"2.5\",\"4.6\",\"4.1\",\"1.5\",\"2.1\",\"3.2\",\"3.5\",\"2.4\",\"2.7\",\"2.2\",\"2.1\",\"2.4\",\"2.0\",\"1.5\",\"2.3\",\"2.4\",\"3.6\",\"2.2\",\"4.2\",\"4.8\",\"1.9\",\"2.4\",\"2.0\",\"2.6\",\"2.1\",\"3.4\",\"2.2\",\"3.1\",\"3.5\",\"3.8\",\"2.0\",\"4.7\",\"3.5\",\"3.4\",\"2.3\",\"3.9\",\"2.9\",\"4.2\",\"4.1\",\"3.0\",\"2.2\",\"2.3\",\"2.9\",\"3.8\",\"3.3\",\"2.0\",\"2.5\",\"2.8\",\"2.5\",\"3.3\",\"3.3\",\"2.9\",\"1.8\",\"3.3\",\"3.4\",\"3.2\",\"2.6\",\"3.2\",\"2.8\",\"2.4\",\"3.1\",\"2.8\",\"2.0\",\"2.0\",\"2.8\",\"3.6\",\"3.7\",\"3.3\",\"3.4\",\"2.8\",\"4.0\",\"3.7\",\"1.5\",\"2.1\",\"3.0\",\"3.5\",\"2.1\",\"3.2\",\"2.8\",\"2.3\",\"2.1\",\"2.5\",\"3.1\",\"4.6\",\"1.6\",\"3.0\",\"1.9\",\"2.0\",\"3.8\",\"3.1\",\"3.1\",\"2.7\",\"3.4\",\"3.9\",\"2.8\",\"2.0\",\"1.8\",\"3.3\",\"2.6\",\"3.7\",\"2.0\",\"2.4\",\"3.1\",\"2.8\",\"3.2\",\"3.8\",\"2.7\",\"1.6\",\"3.4\",\"2.4\",\"3.8\",\"3.4\",\"2.5\",\"2.1\",\"2.5\",\"2.6\",\"3.3\",\"4.4\",\"4.2\",\"3.2\",\"3.0\",\"3.0\",\"3.1\",\"2.8\",\"3.2\",\"4.2\",\"4.1\",\"2.6\",\"2.4\",\"2.1\",\"3.4\",\"3.4\",\"3.0\",\"2.9\",\"2.4\",\"1.9\",\"2.5\",\"3.9\",\"2.8\",\"2.7\",\"3.4\",\"2.0\",\"2.8\",\"2.3\",\"2.1\",\"2.0\",\"2.4\",\"3.6\",\"2.4\",\"1.7\",\"3.0\",\"2.9\",\"3.1\",\"3.3\",\"3.8\",\"2.0\",\"1.9\",\"3.5\",\"3.9\",\"3.1\",\"3.6\",\"2.9\",\"2.9\",\"2.2\",\"2.5\",\"2.4\",\"4.0\",\"2.6\",\"2.0\",\"3.1\",\"3.4\",\"4.0\",\"3.4\",\"4.2\",\"2.6\",\"2.2\",\"2.0\",\"2.3\",\"3.2\",\"3.4\",\"3.0\",\"2.4\",\"3.1\",\"3.7\",\"3.2\",\"3.6\",\"2.1\",\"1.5\",\"3.4\",\"3.3\",\"3.3\",\"3.4\",\"3.2\",\"1.7\",\"3.0\",\"2.7\",\"4.1\",\"4.3\",\"3.0\",\"2.7\",\"3.4\",\"3.2\",\"2.2\",\"4.2\",\"2.6\",\"1.5\",\"3.5\",\"2.6\",\"2.5\",\"3.7\",\"5.0\",\"4.9\",\"4.3\",\"2.0\",\"2.8\",\"2.2\",\"2.4\",\"2.9\",\"1.7\",\"3.4\",\"3.7\",\"3.9\",\"1.6\",\"2.8\",\"3.4\",\"2.9\",\"2.8\",\"4.9\",\"4.9\",\"4.5\",\"3.0\",\"3.2\",\"2.2\",\"2.4\",\"2.0\",\"2.7\",\"1.9\",\"3.0\",\"2.7\",\"2.8\",\"4.8\",\"5.0\",\"3.2\",\"1.6\",\"1.9\",\"2.6\",\"3.5\",\"4.7\",\"4.3\",\"3.3\",\"3.0\",\"2.1\",\"2.6\",\"3.3\",\"4.2\",\"4.9\",\"3.3\",\"2.7\",\"3.2\",\"3.2\",\"2.4\",\"3.5\",\"4.3\",\"1.6\",\"2.9\",\"3.2\",\"3.9\",\"2.0\",\"3.3\",\"2.5\",\"2.0\",\"1.8\",\"2.4\",\"2.3\",\"3.5\",\"2.9\",\"1.7\",\"1.6\",\"2.6\",\"2.8\",\"4.8\",\"4.3\",\"3.4\",\"2.0\",\"3.5\",\"2.6\",\"3.8\",\"3.5\",\"2.8\",\"2.7\",\"1.8\",\"2.5\",\"3.6\",\"2.7\",\"3.0\",\"3.4\",\"2.2\",\"3.9\",\"3.5\",\"1.7\",\"2.6\",\"3.2\",\"3.1\",\"3.3\",\"1.7\",\"2.9\",\"3.3\",\"2.1\",\"2.7\",\"2.5\",\"2.0\",\"3.1\",\"2.8\",\"3.6\",\"3.4\",\"1.6\",\"3.2\",\"2.3\",\"3.0\",\"4.9\",\"4.4\",\"2.4\",\"3.2\",\"1.6\",\"2.1\",\"3.8\",\"4.0\",\"2.4\",\"3.3\",\"3.4\",\"3.0\",\"2.3\",\"3.9\",\"4.3\",\"4.4\",\"3.0\",\"2.5\",\"1.7\",\"1.6\",\"3.9\",\"3.9\",\"2.7\",\"2.5\",\"2.1\",\"2.6\",\"2.1\",\"3.3\",\"4.8\",\"3.5\",\"2.7\",\"3.5\",\"2.0\",\"3.2\",\"3.6\",\"4.7\",\"2.2\",\"3.0\",\"2.1\",\"3.0\",\"3.2\",\"3.1\",\"2.5\",\"1.7\",\"2.9\",\"2.5\",\"2.5\",\"3.8\",\"4.1\",\"2.6\",\"2.0\",\"3.2\",\"2.2\",\"3.7\",\"4.9\",\"2.7\",\"3.1\",\"3.0\",\"2.3\",\"2.1\",\"3.9\",\"4.9\",\"2.6\",\"2.8\",\"3.2\",\"2.8\",\"2.1\",\"3.5\",\"1.9\",\"1.6\",\"3.0\",\"2.3\",\"3.7\",\"2.8\",\"2.2\",\"2.6\",\"3.5\",\"2.7\",\"4.1\",\"4.3\",\"2.1\",\"2.5\",\"2.5\",\"3.5\",\"3.6\",\"3.5\",\"4.8\",\"1.7\",\"2.1\",\"3.1\",\"3.2\",\"2.6\",\"2.4\",\"3.5\",\"2.0\",\"3.2\",\"3.6\",\"4.4\",\"5.0\",\"4.4\",\"3.0\",\"2.6\",\"2.1\",\"3.2\",\"2.0\",\"3.5\",\"2.6\",\"3.8\",\"4.0\",\"3.3\",\"2.3\",\"3.2\",\"3.7\",\"3.5\",\"4.3\",\"2.1\",\"2.4\",\"2.0\",\"2.0\",\"2.0\",\"3.7\",\"2.1\",\"2.7\",\"2.0\",\"3.3\",\"2.6\",\"3.2\",\"4.3\",\"4.1\",\"4.7\",\"3.0\",\"2.6\",\"2.0\",\"3.7\",\"2.8\",\"3.2\",\"1.8\",\"2.7\",\"2.7\",\"2.7\",\"4.8\",\"2.1\",\"2.6\",\"3.3\",\"2.5\",\"3.0\",\"4.1\",\"3.4\",\"2.6\",\"2.6\",\"3.7\",\"2.5\",\"3.4\",\"5.0\",\"2.0\",\"3.3\",\"1.8\",\"2.4\",\"3.5\",\"4.4\",\"3.0\",\"2.7\",\"2.4\",\"3.3\",\"3.7\",\"3.9\",\"1.9\",\"3.2\",\"2.8\",\"2.8\",\"2.3\",\"3.1\",\"5.0\",\"4.7\",\"4.6\",\"2.1\",\"2.7\",\"2.2\",\"3.4\",\"2.0\",\"2.3\",\"2.0\",\"3.9\",\"4.8\",\"2.3\",\"2.9\",\"1.9\",\"2.1\",\"3.2\",\"3.1\",\"4.9\",\"2.0\",\"3.4\",\"2.0\",\"3.0\",\"2.4\",\"3.5\",\"1.9\",\"3.1\",\"3.1\",\"3.7\",\"4.1\",\"2.4\",\"2.7\",\"2.9\",\"2.8\",\"3.1\",\"4.4\",\"2.4\",\"2.2\",\"1.6\",\"4.0\",\"2.5\",\"4.3\",\"2.5\",\"2.9\",\"3.2\",\"2.9\",\"2.8\",\"3.1\",\"2.9\",\"1.9\",\"3.1\",\"3.5\",\"2.8\",\"3.3\",\"4.1\",\"3.0\",\"2.1\",\"2.2\",\"3.5\",\"2.5\",\"3.8\",\"2.2\",\"3.2\",\"2.9\",\"3.9\",\"3.6\",\"3.4\",\"4.8\",\"1.9\",\"2.4\",\"3.4\",\"3.7\",\"2.3\",\"4.3\",\"2.7\",\"3.4\",\"1.6\",\"3.0\",\"2.2\",\"4.6\",\"4.2\",\"4.7\",\"2.1\",\"2.6\",\"3.3\",\"2.8\",\"2.5\",\"3.3\",\"2.8\",\"3.2\",\"3.4\",\"3.7\",\"3.5\",\"2.1\",\"3.1\",\"1.6\",\"2.3\",\"2.9\",\"2.8\",\"2.7\",\"2.3\",\"3.7\",\"2.2\",\"1.8\",\"3.4\",\"3.1\",\"2.5\",\"2.8\",\"4.7\",\"1.9\",\"1.8\",\"2.3\",\"2.5\",\"2.8\",\"3.6\",\"1.6\",\"2.3\",\"2.1\",\"2.8\",\"3.9\",\"4.4\",\"4.7\",\"4.0\",\"1.8\",\"3.3\",\"1.6\",\"2.4\",\"3.3\",\"2.6\",\"3.2\",\"1.6\",\"4.0\",\"3.0\",\"1.5\",\"2.7\",\"2.8\",\"2.4\",\"3.7\",\"3.3\",\"4.2\",\"2.6\",\"2.7\",\"1.6\",\"3.1\",\"2.3\",\"2.7\",\"3.2\",\"3.0\",\"3.3\",\"3.0\",\"4.8\",\"1.7\",\"2.2\",\"2.5\",\"2.6\",\"2.5\",\"4.3\",\"2.8\",\"1.7\",\"2.1\",\"3.9\",\"3.5\",\"2.7\",\"2.0\",\"2.0\",\"3.0\",\"2.2\",\"3.0\",\"4.2\",\"2.6\",\"2.2\",\"1.7\",\"3.2\",\"3.0\",\"4.2\",\"4.4\",\"2.4\",\"2.2\",\"1.5\",\"3.5\",\"2.5\",\"4.3\",\"4.0\",\"4.4\",\"5.0\",\"2.6\",\"2.4\",\"2.6\",\"4.0\",\"2.1\",\"1.5\",\"2.5\",\"3.1\",\"3.9\",\"4.4\",\"5.0\",\"1.6\",\"1.7\",\"3.3\",\"4.0\",\"3.2\",\"2.2\",\"1.7\",\"2.2\",\"2.3\",\"2.0\",\"1.5\",\"1.6\",\"3.5\",\"2.2\",\"2.1\",\"4.8\",\"4.9\",\"3.5\",\"3.4\",\"2.4\",\"3.0\",\"3.6\",\"4.7\",\"4.4\",\"4.3\",\"2.5\",\"2.4\",\"2.9\",\"3.3\",\"3.3\",\"3.1\",\"2.4\",\"2.3\",\"3.3\",\"3.7\",\"3.8\",\"3.6\",\"1.7\",\"2.8\",\"2.4\",\"3.0\",\"2.2\",\"5.0\",\"2.1\",\"2.6\",\"2.6\",\"3.7\",\"2.8\",\"4.4\",\"2.4\",\"2.3\",\"2.0\",\"3.7\",\"2.5\",\"3.5\",\"4.8\",\"2.0\",\"2.9\",\"2.7\",\"3.8\",\"3.9\",\"2.4\",\"3.0\",\"1.5\",\"3.6\",\"4.0\",\"4.5\",\"4.4\",\"1.9\",\"2.3\",\"2.0\",\"4.0\",\"2.3\",\"3.0\",\"2.5\",\"1.6\",\"3.1\",\"3.7\",\"3.0\",\"3.2\",\"1.6\",\"2.9\",\"3.9\",\"4.4\",\"4.7\",\"2.2\",\"2.5\",\"2.8\",\"3.1\",\"2.6\",\"1.5\",\"2.6\",\"3.4\",\"3.1\",\"3.2\",\"4.9\",\"4.7\",\"2.0\",\"3.3\",\"2.8\",\"3.3\",\"3.5\",\"3.1\",\"3.1\",\"2.5\",\"2.2\",\"2.8\",\"4.9\",\"1.9\",\"2.4\",\"1.6\",\"3.6\",\"2.2\",\"3.4\",\"3.3\",\"3.4\",\"2.9\",\"2.7\",\"3.1\",\"4.8\",\"3.1\",\"2.3\",\"3.0\",\"3.5\",\"2.8\",\"4.0\",\"4.6\",\"1.5\",\"1.7\",\"2.4\",\"2.5\",\"2.0\",\"3.8\",\"4.2\",\"2.8\",\"2.2\",\"2.3\",\"2.1\",\"3.0\",\"4.7\",\"3.1\",\"1.9\",\"2.1\",\"3.9\",\"3.6\",\"3.4\",\"2.3\",\"2.9\",\"2.7\",\"2.2\",\"3.2\",\"1.5\",\"2.8\",\"2.8\",\"3.6\",\"3.0\",\"4.0\",\"5.0\",\"2.8\",\"3.0\",\"1.7\",\"3.8\",\"3.3\",\"2.3\",\"2.7\",\"1.7\",\"3.2\",\"4.0\",\"2.9\",\"2.0\",\"2.0\",\"2.1\",\"2.1\",\"3.2\",\"1.6\",\"1.9\",\"2.9\",\"2.2\",\"4.5\",\"3.4\",\"2.2\",\"2.3\",\"2.5\",\"2.2\",\"4.5\",\"4.2\",\"3.2\",\"3.3\",\"2.8\",\"2.7\",\"2.5\",\"4.3\",\"4.5\",\"4.7\",\"3.4\",\"3.0\",\"3.0\",\"3.2\",\"2.7\",\"4.3\",\"4.5\",\"4.1\",\"1.8\",\"2.4\",\"3.2\",\"3.2\",\"3.2\",\"3.1\",\"2.9\",\"3.0\",\"2.2\",\"2.7\",\"3.9\",\"4.1\",\"4.3\",\"4.8\",\"4.1\",\"2.4\",\"2.3\",\"2.6\",\"1.5\",\"2.0\",\"3.8\",\"1.5\",\"1.9\",\"3.2\",\"3.6\",\"2.7\",\"2.6\",\"3.1\",\"2.4\",\"2.1\",\"3.0\",\"3.1\",\"4.9\",\"3.3\",\"3.0\",\"2.8\",\"2.1\",\"3.3\",\"4.1\",\"3.4\",\"3.4\",\"3.0\",\"3.9\",\"2.8\",\"3.6\",\"5.0\",\"1.9\",\"2.6\",\"1.9\",\"3.4\",\"3.1\",\"4.5\",\"4.2\",\"3.4\",\"2.0\",\"2.9\",\"3.0\",\"3.7\",\"4.8\",\"2.7\",\"2.7\",\"3.1\",\"2.9\",\"3.6\",\"4.4\",\"1.7\",\"1.7\",\"3.3\",\"3.6\",\"2.5\",\"4.1\",\"1.9\",\"1.9\",\"2.0\",\"2.9\",\"4.0\",\"3.2\",\"4.2\",\"2.4\",\"2.2\",\"2.2\",\"3.2\",\"2.2\",\"3.5\",\"4.2\",\"2.6\",\"2.2\",\"2.1\",\"2.5\",\"3.7\",\"3.2\",\"3.4\",\"1.8\",\"2.7\",\"3.5\",\"2.9\",\"3.2\",\"2.0\",\"3.3\",\"3.2\",\"2.2\",\"3.2\",\"3.6\",\"2.5\",\"1.8\",\"3.3\",\"3.2\",\"3.5\",\"4.6\",\"4.6\",\"2.9\",\"1.7\",\"2.5\",\"2.7\",\"3.2\",\"4.0\",\"4.3\",\"3.0\",\"2.9\",\"2.0\",\"2.2\",\"2.7\",\"2.2\",\"2.6\",\"2.6\",\"3.2\",\"2.8\",\"3.5\",\"2.9\",\"3.0\",\"2.3\",\"3.8\",\"3.9\",\"3.3\",\"4.2\",\"3.5\",\"3.3\",\"2.1\",\"3.8\",\"2.7\",\"3.6\",\"4.7\",\"3.2\",\"2.1\",\"1.5\",\"3.4\",\"2.3\",\"3.3\",\"2.8\",\"2.0\",\"3.5\",\"2.1\",\"3.9\",\"1.9\",\"3.3\",\"3.3\",\"2.8\",\"3.0\",\"4.5\",\"4.4\",\"3.4\",\"2.3\",\"2.5\",\"3.0\",\"3.9\",\"3.1\",\"2.6\",\"3.0\",\"1.6\",\"2.9\",\"2.4\",\"4.6\",\"4.8\",\"4.9\",\"2.0\",\"3.1\",\"3.1\",\"2.8\",\"3.5\",\"3.3\",\"2.1\",\"3.1\",\"3.3\",\"3.0\",\"2.5\",\"4.8\",\"2.9\",\"2.6\",\"2.8\",\"3.6\",\"3.9\",\"4.1\",\"2.7\",\"2.7\",\"2.8\",\"3.5\",\"3.6\",\"2.2\",\"2.0\",\"2.8\",\"2.1\",\"3.0\",\"3.2\",\"2.9\",\"1.5\",\"2.3\",\"2.6\",\"2.4\",\"3.3\",\"3.4\",\"3.8\",\"2.4\",\"2.8\",\"2.6\",\"2.3\",\"2.7\",\"3.6\",\"3.5\",\"4.5\",\"2.0\",\"2.3\",\"2.6\",\"2.9\",\"3.1\",\"3.2\",\"4.2\",\"4.3\",\"4.4\",\"2.1\",\"2.1\",\"3.4\",\"1.5\",\"3.1\",\"3.2\",\"3.1\",\"4.8\",\"4.7\",\"1.8\",\"3.5\",\"2.4\",\"4.0\",\"3.6\",\"3.3\",\"4.5\",\"1.7\",\"1.8\",\"2.7\",\"2.5\",\"2.6\",\"3.3\",\"2.6\",\"3.2\",\"3.5\",\"2.4\",\"4.2\",\"1.6\",\"2.8\",\"2.5\",\"2.2\",\"3.9\",\"4.2\",\"4.0\",\"2.1\",\"2.6\",\"1.8\",\"2.5\",\"2.1\",\"4.6\",\"4.5\",\"3.0\",\"1.6\",\"1.5\",\"3.1\",\"2.4\",\"3.2\",\"3.5\",\"1.7\",\"3.0\",\"3.5\",\"3.3\",\"4.7\",\"4.0\",\"3.1\",\"2.2\",\"2.8\",\"3.3\",\"3.9\",\"1.5\",\"1.7\",\"2.3\",\"2.7\",\"2.7\",\"2.9\",\"2.4\",\"1.6\",\"2.4\",\"3.6\",\"4.5\",\"2.3\",\"1.9\",\"2.1\",\"3.8\",\"3.4\",\"3.3\",\"4.4\",\"1.7\",\"2.8\",\"1.5\",\"2.8\",\"2.3\",\"1.7\",\"3.2\",\"2.0\",\"2.5\",\"3.8\",\"3.1\",\"1.8\",\"1.7\",\"2.3\",\"3.7\",\"3.3\",\"3.1\",\"3.2\",\"1.7\",\"3.1\",\"2.4\",\"2.3\",\"3.3\",\"2.3\",\"2.5\",\"1.5\",\"2.0\",\"3.3\",\"3.6\",\"1.5\",\"2.6\",\"1.6\",\"3.0\",\"3.7\",\"3.1\",\"4.5\",\"3.2\",\"2.5\",\"2.9\",\"3.8\",\"3.6\",\"3.4\",\"2.5\",\"3.3\",\"2.4\",\"2.9\",\"4.8\",\"4.1\",\"1.5\",\"2.9\",\"2.7\",\"3.7\",\"2.8\",\"4.2\",\"4.5\",\"5.0\",\"5.0\",\"2.3\",\"2.7\",\"2.8\",\"2.1\",\"2.8\",\"2.9\",\"2.8\",\"2.0\",\"3.7\",\"3.6\",\"4.3\",\"1.9\",\"3.0\",\"2.7\",\"3.4\",\"2.3\",\"4.2\",\"2.1\",\"2.6\",\"3.3\",\"2.5\",\"2.2\",\"4.4\",\"4.9\",\"2.3\",\"3.2\",\"3.5\",\"3.8\",\"2.1\",\"4.0\",\"3.9\",\"3.4\",\"3.5\",\"2.1\",\"2.1\",\"4.0\",\"4.3\",\"4.2\",\"3.2\",\"3.5\",\"2.5\",\"3.6\",\"2.4\",\"4.8\",\"2.2\",\"2.2\",\"2.8\",\"3.2\",\"3.0\",\"3.1\",\"2.4\",\"2.0\",\"3.3\",\"3.2\",\"2.1\",\"3.4\",\"4.7\",\"4.3\",\"2.6\",\"2.8\",\"2.9\",\"3.9\",\"3.2\",\"1.7\",\"3.5\",\"3.5\",\"3.5\",\"2.7\",\"3.9\",\"4.8\",\"2.2\",\"2.8\",\"2.9\",\"2.3\",\"2.2\",\"1.9\",\"1.6\",\"1.7\",\"2.6\",\"2.8\",\"4.4\",\"2.0\",\"1.9\",\"2.3\",\"3.6\",\"2.5\",\"3.6\",\"4.3\",\"1.5\",\"2.1\",\"1.6\",\"3.4\",\"2.5\",\"3.9\",\"4.5\",\"1.6\",\"2.3\",\"1.8\",\"3.5\",\"3.9\",\"2.7\",\"2.8\",\"1.6\",\"3.0\",\"3.0\",\"5.0\",\"3.2\",\"1.6\",\"2.3\",\"2.6\",\"2.9\",\"4.9\",\"3.8\",\"4.2\",\"4.1\",\"4.8\",\"2.2\",\"2.8\",\"3.2\",\"3.4\",\"3.1\",\"2.4\",\"2.1\",\"2.6\",\"2.3\",\"2.9\",\"3.9\",\"3.4\",\"4.6\",\"2.0\",\"3.5\",\"2.7\",\"3.9\",\"3.8\",\"1.7\",\"1.7\",\"1.6\",\"3.1\",\"2.7\",\"4.8\",\"3.5\",\"2.7\",\"2.6\",\"3.9\",\"3.6\",\"3.2\",\"4.8\",\"2.2\",\"3.2\",\"2.0\",\"2.6\",\"2.4\",\"3.9\",\"4.1\",\"2.5\",\"2.5\",\"1.8\",\"2.0\",\"2.7\",\"4.4\",\"4.6\",\"1.9\",\"1.8\",\"3.3\",\"2.5\",\"3.6\",\"3.1\",\"2.8\",\"2.9\",\"3.4\",\"2.6\",\"2.2\",\"3.3\",\"2.5\",\"2.2\",\"2.1\",\"3.2\",\"3.6\",\"3.3\",\"2.2\",\"3.2\",\"3.0\",\"2.5\",\"2.0\",\"1.8\",\"2.3\",\"2.9\",\"2.4\",\"4.0\",\"3.2\",\"2.9\",\"1.5\",\"3.4\",\"3.8\",\"2.1\",\"2.1\",\"3.4\",\"2.6\",\"3.9\",\"4.7\",\"4.6\",\"3.3\",\"2.4\",\"3.0\",\"3.2\",\"3.8\",\"4.0\",\"3.1\",\"1.6\",\"2.5\",\"3.4\",\"3.6\",\"4.9\",\"5.0\",\"1.5\",\"3.4\",\"1.7\",\"3.6\",\"3.2\",\"3.3\",\"3.2\",\"2.1\",\"3.5\",\"3.0\",\"2.3\",\"3.2\",\"3.0\",\"2.9\",\"2.6\",\"4.0\",\"4.9\",\"4.7\",\"4.1\",\"5.0\",\"2.3\",\"2.6\",\"2.2\",\"2.0\",\"2.2\",\"4.9\",\"4.3\",\"1.7\",\"3.2\",\"2.6\",\"3.0\",\"2.1\",\"3.1\",\"4.5\",\"2.0\",\"3.2\",\"2.8\",\"3.1\",\"2.9\",\"4.2\",\"2.2\",\"1.7\",\"3.4\",\"3.6\",\"3.8\",\"3.3\",\"1.7\",\"1.7\",\"3.8\",\"3.7\",\"2.9\",\"3.3\",\"3.4\",\"2.4\",\"3.8\",\"3.7\",\"4.8\",\"1.5\",\"3.1\",\"3.5\",\"2.6\",\"2.2\",\"4.0\",\"4.8\",\"1.5\",\"3.0\",\"2.3\",\"3.9\",\"2.4\",\"2.6\",\"2.4\",\"3.3\",\"2.2\",\"2.7\",\"4.2\",\"4.8\",\"4.7\",\"2.1\",\"2.1\",\"2.9\",\"2.7\",\"2.9\",\"2.0\",\"3.7\",\"3.1\",\"1.5\",\"2.4\",\"2.0\",\"3.3\",\"4.0\",\"3.7\",\"4.3\",\"3.0\",\"2.3\",\"3.0\",\"2.8\",\"2.4\",\"1.8\",\"1.8\",\"2.1\",\"2.2\",\"2.4\",\"1.8\",\"2.0\",\"1.9\",\"3.4\",\"2.5\",\"3.4\",\"2.5\",\"2.2\",\"2.3\",\"2.5\",\"2.2\",\"4.0\",\"1.9\",\"3.1\",\"2.0\",\"3.8\",\"2.9\",\"5.0\",\"3.4\",\"2.8\",\"2.9\",\"2.7\",\"2.6\",\"3.8\",\"4.7\",\"4.7\",\"4.9\",\"3.3\",\"3.4\",\"1.9\",\"3.8\",\"3.8\",\"4.8\",\"4.0\",\"3.1\",\"2.0\",\"2.1\",\"4.0\",\"3.8\",\"3.2\",\"4.5\",\"3.3\",\"2.5\",\"2.1\",\"3.1\",\"3.0\",\"3.5\",\"3.0\",\"3.5\",\"2.8\",\"3.5\",\"2.9\",\"3.8\",\"3.2\",\"2.5\",\"1.7\",\"2.3\",\"3.6\",\"2.5\",\"2.5\",\"3.0\",\"2.5\",\"3.9\",\"3.4\",\"4.9\",\"4.6\",\"2.7\",\"2.5\",\"2.6\",\"3.4\",\"3.5\",\"3.5\",\"2.2\",\"3.2\",\"2.1\",\"3.4\",\"2.5\",\"3.4\",\"4.3\",\"3.5\",\"2.8\",\"1.8\",\"3.4\",\"3.3\",\"3.5\",\"1.5\",\"2.2\",\"3.2\",\"3.8\",\"2.3\",\"3.3\",\"4.5\",\"3.0\",\"1.5\",\"3.4\",\"3.4\",\"2.9\",\"3.5\",\"4.1\",\"2.7\",\"2.0\",\"3.3\",\"3.5\",\"3.2\",\"1.6\",\"1.9\",\"2.5\",\"2.3\",\"2.3\",\"4.5\",\"1.8\",\"1.6\",\"2.0\",\"3.0\",\"3.3\",\"2.9\",\"1.8\",\"2.9\",\"2.3\",\"3.7\",\"4.8\",\"3.5\",\"3.1\",\"3.3\",\"3.4\",\"3.9\",\"4.1\",\"4.5\",\"2.8\",\"3.2\",\"3.1\",\"3.9\",\"2.3\",\"3.3\",\"3.5\",\"2.2\",\"3.0\",\"2.5\",\"2.2\",\"2.8\",\"3.2\",\"3.0\",\"2.9\",\"3.0\",\"4.0\",\"3.4\",\"2.7\",\"1.6\",\"3.3\",\"3.4\",\"3.3\",\"2.2\",\"3.2\",\"1.5\",\"2.1\",\"3.0\",\"3.1\",\"4.6\",\"3.1\",\"2.9\",\"2.3\",\"3.3\",\"3.2\",\"3.7\",\"2.8\",\"2.4\",\"1.6\",\"3.0\",\"2.7\",\"1.8\",\"2.5\",\"2.3\",\"2.3\",\"3.6\",\"1.7\",\"2.6\",\"2.0\",\"3.7\",\"3.3\",\"2.2\",\"2.4\",\"2.5\",\"3.5\",\"3.1\",\"4.9\",\"4.9\",\"2.9\",\"3.1\",\"3.0\",\"2.1\",\"2.9\",\"4.8\",\"2.9\",\"1.9\",\"3.0\",\"2.2\",\"3.7\",\"3.1\",\"3.3\",\"2.1\",\"3.1\",\"2.5\",\"2.2\",\"4.6\",\"2.4\",\"3.4\",\"2.5\",\"3.9\",\"2.4\",\"4.3\",\"4.5\",\"3.0\",\"2.1\",\"2.1\",\"3.4\",\"2.6\",\"4.6\",\"3.3\",\"2.6\",\"1.6\",\"2.8\",\"2.9\",\"4.2\",\"4.5\",\"2.9\",\"1.5\",\"2.9\",\"2.9\",\"3.7\",\"3.7\",\"1.8\",\"2.2\",\"3.0\",\"2.2\",\"2.7\",\"4.7\",\"4.7\",\"2.6\",\"1.8\",\"2.3\",\"2.1\",\"3.9\",\"4.9\",\"4.0\",\"2.3\",\"3.3\",\"2.3\",\"3.3\",\"3.4\",\"3.1\",\"2.8\",\"1.7\",\"1.9\",\"2.8\",\"2.6\",\"3.2\",\"4.5\",\"2.7\",\"2.6\",\"2.7\",\"3.9\",\"2.1\",\"4.9\",\"4.1\",\"4.6\",\"2.5\",\"2.2\",\"2.4\",\"3.6\",\"3.8\",\"2.9\",\"2.8\",\"3.2\",\"3.1\",\"2.0\",\"4.7\",\"4.1\",\"4.3\",\"4.7\",\"4.1\",\"2.9\",\"2.5\",\"2.0\",\"2.0\",\"3.4\",\"3.8\",\"3.2\",\"5.0\",\"4.9\",\"3.2\",\"3.0\",\"3.0\",\"3.5\",\"2.8\",\"4.5\",\"4.2\",\"3.2\",\"2.9\",\"3.4\",\"2.4\",\"2.5\",\"4.7\",\"3.0\",\"2.1\",\"1.8\",\"3.8\",\"2.0\",\"3.2\",\"1.6\",\"1.6\",\"2.5\",\"2.4\",\"1.5\",\"1.6\",\"2.6\",\"3.8\",\"2.2\",\"2.7\",\"2.8\",\"2.4\",\"2.5\",\"3.4\",\"1.7\",\"2.3\",\"2.1\",\"2.8\",\"2.3\",\"2.7\",\"2.6\",\"1.8\",\"3.7\",\"3.7\",\"4.5\",\"4.1\",\"2.5\",\"2.0\",\"2.1\",\"3.2\",\"2.9\",\"3.3\",\"3.0\",\"2.8\",\"2.6\",\"3.4\",\"4.6\",\"3.4\",\"2.4\",\"1.9\",\"2.4\",\"2.6\",\"2.3\",\"3.3\",\"3.5\",\"3.5\",\"3.8\",\"3.2\",\"2.1\",\"2.0\",\"3.0\",\"3.4\",\"2.7\",\"2.8\",\"3.1\",\"2.0\",\"2.6\",\"2.2\",\"3.0\",\"2.9\",\"1.8\",\"3.7\",\"3.6\",\"4.8\",\"4.7\",\"2.0\",\"1.8\",\"2.7\",\"2.2\",\"2.6\",\"3.6\",\"4.9\",\"1.7\",\"1.6\",\"3.4\",\"2.2\",\"2.9\",\"3.6\",\"2.5\",\"2.6\",\"3.2\",\"3.6\",\"2.1\",\"4.1\",\"4.8\",\"1.9\",\"2.2\",\"1.6\",\"2.5\",\"3.1\",\"4.5\",\"4.8\",\"2.7\",\"3.0\",\"3.1\",\"3.2\",\"4.0\",\"1.5\",\"2.1\",\"3.5\",\"3.4\",\"2.7\",\"2.2\",\"2.0\",\"2.3\",\"4.0\",\"3.3\",\"2.4\",\"1.6\",\"1.9\",\"3.0\",\"3.6\",\"3.7\",\"5.0\",\"4.3\",\"2.5\",\"2.5\",\"2.8\",\"4.0\",\"3.4\",\"3.5\",\"3.0\",\"2.6\",\"3.1\",\"1.8\",\"4.0\",\"2.4\",\"1.5\",\"2.9\",\"2.1\",\"3.5\",\"3.6\",\"2.0\",\"2.8\",\"2.4\",\"2.4\",\"3.9\",\"4.4\",\"3.2\",\"1.9\",\"3.3\",\"2.7\",\"2.6\",\"4.0\",\"2.2\",\"3.5\",\"1.6\",\"3.8\",\"3.8\",\"2.7\",\"3.3\",\"2.7\",\"2.7\",\"3.3\",\"3.2\",\"2.4\",\"3.4\",\"2.7\",\"3.2\",\"4.3\",\"4.8\",\"1.8\",\"2.8\",\"2.1\",\"3.2\",\"3.4\",\"3.1\",\"3.1\",\"1.9\",\"2.8\",\"3.5\",\"3.1\",\"4.8\",\"4.7\",\"3.2\",\"2.5\",\"3.2\",\"2.9\",\"4.0\",\"4.4\",\"3.4\",\"1.9\",\"2.9\",\"3.4\",\"2.8\",\"3.4\",\"3.4\",\"1.5\",\"1.8\",\"3.5\",\"3.4\",\"4.7\",\"2.6\",\"2.3\",\"2.5\",\"3.3\",\"4.0\",\"3.2\",\"4.1\",\"2.5\",\"1.9\",\"2.3\",\"2.2\",\"2.4\",\"4.7\",\"2.3\",\"1.5\",\"3.3\",\"2.2\",\"2.1\",\"4.7\",\"4.1\",\"3.2\",\"3.4\",\"3.0\",\"2.0\",\"3.2\",\"3.8\",\"4.7\",\"1.8\",\"2.7\",\"3.3\",\"2.2\",\"3.1\",\"4.7\",\"1.6\",\"3.4\",\"2.4\",\"3.3\",\"3.0\",\"2.6\",\"3.1\",\"1.8\",\"2.6\",\"3.3\",\"2.7\",\"3.2\",\"2.2\",\"3.6\",\"3.4\",\"3.0\",\"3.0\",\"2.3\",\"2.4\",\"2.7\",\"4.3\",\"2.0\",\"2.3\",\"2.6\",\"3.8\",\"2.8\",\"3.5\",\"3.4\",\"3.1\",\"2.9\",\"3.2\",\"4.9\",\"4.6\",\"2.7\",\"1.9\",\"3.3\",\"2.7\",\"3.4\",\"3.8\",\"2.3\",\"2.4\",\"1.6\",\"3.8\",\"2.6\",\"2.1\",\"2.7\",\"2.5\",\"2.8\",\"2.1\",\"2.4\",\"3.4\",\"2.6\",\"2.9\",\"3.9\",\"3.2\",\"4.4\",\"5.0\",\"4.0\",\"2.9\",\"3.4\",\"3.4\",\"2.9\",\"3.4\",\"2.4\",\"2.3\",\"3.4\",\"1.7\",\"3.7\",\"2.3\",\"3.0\",\"1.5\",\"2.0\",\"3.7\",\"3.1\",\"3.9\",\"1.9\",\"3.4\",\"2.6\",\"2.5\",\"2.9\",\"4.4\",\"4.9\",\"1.6\",\"3.3\",\"2.3\",\"2.6\",\"2.9\",\"3.4\",\"2.0\",\"2.9\",\"2.5\",\"2.4\",\"3.4\",\"1.7\",\"3.1\",\"3.1\",\"3.2\",\"2.3\",\"1.9\",\"2.8\",\"1.8\",\"3.3\",\"3.2\",\"3.3\",\"4.6\",\"3.3\",\"2.2\",\"3.3\",\"3.5\",\"2.1\",\"3.3\",\"1.5\",\"2.5\",\"3.3\",\"3.1\",\"2.8\",\"4.0\",\"4.8\",\"3.4\",\"2.7\",\"2.0\",\"3.0\",\"2.2\",\"1.6\",\"3.2\",\"1.9\",\"2.1\",\"2.6\",\"4.8\",\"3.2\",\"3.0\",\"3.1\",\"3.6\",\"2.4\",\"3.6\",\"5.0\",\"1.8\",\"2.0\",\"1.6\",\"2.6\",\"3.3\",\"4.3\",\"2.5\",\"1.7\",\"2.7\",\"3.9\",\"3.4\",\"3.8\",\"3.8\",\"4.5\",\"4.6\",\"3.2\",\"1.9\",\"2.9\",\"2.1\",\"3.3\",\"3.1\",\"2.4\",\"3.5\",\"3.1\",\"3.0\",\"3.1\",\"2.8\",\"2.3\",\"3.4\",\"3.6\",\"3.7\",\"2.2\",\"3.1\",\"1.9\",\"2.0\",\"3.5\",\"2.8\",\"1.7\",\"3.0\",\"2.1\",\"3.4\",\"1.9\",\"2.3\",\"1.8\",\"3.5\",\"3.1\",\"4.5\",\"4.5\",\"2.2\",\"3.3\",\"2.4\",\"3.4\",\"2.8\",\"3.2\",\"4.9\",\"4.1\",\"4.4\",\"2.3\",\"2.5\",\"2.0\",\"3.5\",\"3.4\",\"2.0\",\"2.8\",\"3.2\",\"3.1\",\"4.4\",\"2.4\",\"2.8\",\"2.8\",\"3.8\",\"2.1\",\"3.4\",\"2.1\",\"2.4\",\"1.9\",\"3.9\",\"3.5\",\"2.3\",\"2.5\",\"1.5\",\"3.1\",\"2.9\",\"3.4\",\"4.1\",\"1.9\",\"2.6\",\"2.7\",\"3.7\",\"3.9\",\"3.2\",\"2.3\",\"1.6\",\"3.1\",\"3.8\",\"2.1\",\"3.4\",\"2.9\",\"1.6\",\"3.4\",\"3.9\",\"3.9\",\"2.3\",\"1.5\",\"1.9\",\"2.3\",\"2.7\",\"3.6\",\"2.1\",\"3.2\",\"2.8\",\"3.3\",\"3.8\",\"3.9\",\"2.5\",\"3.3\",\"2.3\",\"3.7\",\"3.1\",\"4.7\",\"4.4\",\"4.7\",\"4.7\",\"2.2\",\"2.2\",\"1.9\",\"3.1\",\"1.8\",\"3.4\",\"4.0\",\"2.2\",\"2.6\",\"1.9\",\"3.1\",\"4.0\",\"3.3\",\"3.5\",\"2.2\",\"4.0\",\"2.5\",\"1.9\",\"3.0\",\"1.9\",\"2.0\",\"4.0\",\"2.7\",\"1.8\",\"2.1\",\"3.7\",\"2.8\",\"2.0\",\"2.5\",\"2.9\",\"3.6\",\"3.5\",\"3.8\",\"4.9\",\"2.2\",\"1.9\",\"1.7\",\"2.3\",\"2.1\",\"4.2\",\"4.5\",\"2.8\",\"2.6\",\"2.5\",\"2.2\",\"2.3\",\"4.9\",\"3.4\",\"2.3\",\"3.0\",\"3.5\",\"2.0\",\"4.5\",\"4.2\",\"3.2\",\"3.2\",\"1.6\",\"3.0\",\"2.9\",\"2.1\",\"2.1\",\"3.5\",\"2.0\",\"3.7\",\"3.5\",\"4.6\",\"1.8\",\"1.7\",\"3.1\",\"3.8\",\"3.4\",\"4.5\",\"3.5\",\"2.5\",\"3.5\",\"3.2\",\"2.6\",\"3.6\",\"3.4\",\"1.6\",\"2.6\",\"3.8\",\"2.6\",\"3.6\",\"4.2\",\"3.4\",\"1.9\",\"2.0\",\"3.9\",\"3.1\",\"3.8\",\"4.1\",\"2.0\",\"3.4\",\"2.3\",\"3.5\",\"3.4\",\"3.2\",\"2.3\",\"2.0\",\"2.8\",\"2.2\",\"3.3\",\"3.9\",\"3.4\",\"2.8\",\"3.1\",\"2.5\",\"2.7\",\"3.2\",\"2.6\",\"3.3\",\"3.7\",\"3.5\",\"3.9\",\"4.0\",\"3.1\",\"3.1\",\"3.4\",\"2.9\",\"3.0\",\"3.0\",\"1.8\",\"1.6\",\"3.3\",\"2.7\",\"3.3\",\"4.2\",\"4.0\",\"3.3\",\"1.8\",\"1.5\",\"2.6\",\"3.8\",\"2.6\",\"2.9\",\"2.6\",\"3.9\",\"3.1\",\"4.7\",\"4.8\",\"3.2\",\"2.4\",\"3.3\",\"3.2\",\"3.0\",\"4.4\",\"3.2\",\"2.7\",\"2.3\",\"3.5\",\"3.3\",\"3.9\",\"4.9\",\"1.8\",\"2.3\",\"1.6\",\"3.7\",\"3.5\",\"4.6\",\"1.6\",\"2.4\",\"2.8\",\"2.9\",\"3.0\",\"3.2\",\"3.1\",\"3.1\",\"2.6\",\"2.1\",\"4.2\",\"2.1\",\"1.8\",\"1.5\",\"3.4\",\"2.5\",\"3.3\",\"2.2\",\"2.0\",\"3.5\",\"2.9\",\"3.3\",\"2.8\",\"3.3\",\"2.5\",\"3.5\",\"2.1\",\"4.2\",\"4.5\",\"1.8\",\"1.8\",\"3.4\",\"4.0\",\"2.2\",\"2.3\",\"3.0\",\"2.8\",\"2.3\",\"3.4\",\"4.4\",\"3.1\",\"2.7\",\"1.8\",\"2.5\",\"3.6\",\"3.1\",\"4.1\",\"2.1\",\"3.4\",\"2.2\",\"3.9\",\"3.6\",\"4.5\",\"4.2\",\"3.1\",\"2.4\",\"2.9\",\"3.8\",\"3.1\",\"3.7\",\"4.3\",\"1.8\",\"2.1\",\"1.8\",\"2.2\",\"2.4\",\"4.8\",\"4.6\",\"2.7\",\"3.2\",\"2.1\",\"3.4\",\"2.9\",\"4.7\",\"1.6\",\"2.5\",\"3.1\",\"3.5\",\"3.3\",\"3.8\",\"4.3\",\"4.5\",\"5.0\",\"2.6\",\"2.3\",\"2.6\",\"3.0\",\"3.6\",\"3.3\",\"2.1\",\"3.1\",\"2.7\",\"2.9\",\"2.3\",\"1.7\",\"3.5\",\"1.9\",\"2.5\",\"3.3\",\"2.8\",\"1.5\",\"3.5\",\"3.9\",\"2.3\",\"2.4\",\"2.5\",\"3.1\",\"3.5\",\"4.0\",\"3.6\",\"4.9\",\"1.9\",\"2.2\",\"1.8\",\"3.3\",\"3.9\",\"3.0\",\"2.3\",\"1.7\",\"2.9\",\"2.6\",\"2.9\",\"4.8\",\"4.3\",\"1.9\",\"2.5\",\"2.9\",\"2.6\",\"3.9\",\"3.6\",\"4.7\",\"3.1\",\"2.3\",\"2.5\",\"2.9\",\"2.7\",\"3.5\",\"1.6\",\"3.2\",\"3.0\",\"3.7\",\"4.1\",\"4.6\",\"4.4\",\"2.1\",\"2.7\",\"2.8\",\"3.6\",\"1.8\",\"1.7\",\"3.0\",\"3.1\",\"3.1\",\"2.3\",\"1.9\",\"2.4\",\"3.8\",\"3.8\",\"4.4\",\"1.5\",\"1.9\",\"2.5\",\"2.1\",\"2.0\",\"3.1\",\"2.5\",\"2.3\",\"2.3\",\"2.1\",\"3.5\",\"4.8\",\"1.9\",\"2.8\",\"1.6\",\"2.8\",\"3.9\",\"2.3\",\"2.3\",\"2.3\",\"2.4\",\"3.6\",\"3.6\",\"4.5\",\"3.0\",\"2.0\",\"2.6\",\"3.2\",\"2.7\",\"4.3\",\"4.3\",\"2.6\",\"2.1\",\"1.9\",\"3.9\",\"3.7\",\"3.2\",\"3.2\",\"3.1\",\"2.9\",\"3.9\",\"2.3\",\"3.4\",\"2.9\",\"2.3\",\"3.5\",\"2.1\",\"5.0\",\"3.1\",\"1.9\",\"2.2\",\"2.7\",\"3.8\",\"4.8\",\"4.3\",\"3.3\",\"1.6\",\"2.4\",\"3.5\",\"2.2\",\"2.0\",\"2.8\",\"2.2\",\"3.3\",\"2.2\",\"2.7\",\"2.3\",\"1.7\",\"3.4\",\"3.3\",\"4.0\",\"4.7\",\"2.3\",\"2.8\",\"1.7\",\"3.2\",\"4.0\",\"4.5\",\"4.8\",\"1.8\",\"1.9\",\"1.8\",\"2.0\",\"3.3\",\"2.2\",\"3.1\",\"1.6\",\"3.7\",\"2.9\",\"4.6\",\"4.7\",\"4.9\",\"4.5\",\"1.6\",\"2.8\",\"1.6\",\"3.2\",\"2.6\",\"1.9\",\"2.8\",\"2.0\",\"2.0\",\"3.3\",\"3.9\",\"4.3\",\"2.4\",\"3.1\",\"2.4\",\"3.6\",\"3.9\",\"3.1\",\"2.4\",\"2.0\",\"2.4\",\"3.9\",\"3.9\",\"2.6\",\"2.0\",\"3.1\",\"3.4\",\"3.0\",\"3.5\",\"3.3\",\"3.4\",\"2.1\",\"3.1\",\"4.7\",\"2.2\",\"1.5\",\"1.8\",\"2.2\",\"2.6\",\"3.2\",\"2.9\",\"2.2\",\"3.4\",\"3.8\",\"2.0\",\"4.0\",\"1.6\",\"3.2\",\"3.2\",\"3.2\",\"3.4\",\"3.9\",\"5.0\",\"2.0\",\"2.8\",\"3.4\",\"2.5\",\"3.1\",\"4.7\",\"4.7\",\"3.4\",\"2.2\",\"2.4\",\"2.1\",\"3.7\",\"4.3\",\"4.9\",\"2.8\",\"2.6\",\"1.8\",\"4.0\",\"2.5\",\"4.1\",\"4.3\",\"1.9\",\"2.3\",\"2.4\",\"2.6\",\"3.0\",\"3.4\",\"3.1\",\"2.9\",\"1.7\",\"3.4\",\"2.3\",\"2.9\",\"4.8\",\"4.3\",\"3.2\",\"3.2\",\"3.2\",\"3.5\",\"3.0\",\"4.8\",\"2.6\",\"2.3\",\"2.6\",\"2.3\",\"3.5\",\"4.2\",\"4.6\",\"3.2\",\"2.1\",\"2.8\",\"2.3\",\"3.2\",\"3.8\",\"3.0\",\"1.9\",\"2.1\",\"2.7\",\"2.1\",\"2.1\",\"2.6\",\"2.0\",\"3.0\",\"3.0\",\"3.6\",\"1.7\",\"2.0\",\"3.1\",\"2.2\",\"3.8\",\"3.7\",\"1.9\",\"2.4\",\"2.1\",\"4.0\",\"3.7\",\"3.4\",\"4.9\",\"2.9\",\"1.8\",\"3.2\",\"2.6\",\"3.8\",\"3.1\",\"3.1\",\"3.0\",\"3.2\",\"2.0\",\"4.6\",\"4.8\",\"4.1\",\"2.3\",\"1.5\",\"2.8\",\"1.6\",\"2.0\",\"2.4\",\"4.7\",\"3.0\",\"3.5\",\"2.8\",\"2.1\",\"2.9\",\"4.3\",\"3.4\",\"1.9\",\"1.7\",\"3.6\",\"2.4\",\"4.7\",\"2.8\",\"1.6\",\"3.0\",\"3.0\",\"3.8\",\"4.2\",\"1.7\",\"2.1\",\"3.1\",\"2.0\",\"3.3\",\"2.6\",\"2.0\",\"2.5\",\"2.6\",\"2.0\",\"4.6\",\"2.0\",\"3.5\",\"2.1\",\"2.4\",\"2.8\",\"3.1\",\"4.4\",\"3.5\",\"2.4\",\"1.5\",\"3.9\",\"2.5\",\"3.3\",\"1.7\",\"3.3\",\"2.9\",\"3.1\",\"3.4\",\"4.5\",\"1.8\",\"3.0\",\"2.3\",\"3.3\",\"2.6\",\"3.9\",\"4.8\",\"2.8\",\"2.6\",\"1.9\",\"3.7\",\"2.4\",\"2.1\",\"3.0\",\"2.0\",\"3.3\",\"3.8\",\"2.3\",\"3.0\",\"2.1\",\"3.3\",\"2.3\",\"4.3\",\"2.7\",\"2.2\",\"2.8\",\"2.1\",\"3.8\",\"4.0\",\"4.5\",\"4.2\",\"2.6\",\"2.4\",\"2.0\",\"3.1\",\"3.4\",\"2.2\",\"1.5\",\"3.6\",\"2.0\",\"5.0\",\"1.9\",\"2.6\",\"2.6\",\"3.1\",\"3.4\",\"2.5\",\"2.5\",\"2.4\",\"2.7\",\"2.4\",\"4.5\",\"1.6\",\"2.9\",\"2.0\",\"3.4\",\"2.5\",\"3.5\",\"2.5\",\"2.7\",\"2.8\",\"3.8\",\"2.6\",\"3.7\",\"3.0\",\"2.0\",\"2.7\",\"2.2\",\"3.4\",\"4.6\",\"2.5\",\"2.5\",\"3.1\",\"2.7\",\"2.3\",\"2.7\",\"3.3\",\"2.9\",\"2.8\",\"3.5\",\"3.5\",\"2.5\",\"2.1\",\"2.9\",\"2.7\",\"2.5\",\"2.1\",\"3.1\",\"2.6\",\"2.3\",\"3.5\",\"4.7\",\"4.7\",\"2.3\",\"2.6\",\"2.7\",\"3.9\",\"3.8\",\"3.2\",\"2.4\",\"1.6\",\"3.0\",\"2.3\",\"3.5\",\"3.4\",\"4.2\",\"3.5\",\"3.4\",\"2.4\",\"3.3\",\"2.3\",\"4.4\",\"4.2\",\"3.0\",\"2.0\",\"2.1\",\"2.3\",\"2.4\",\"4.8\",\"3.5\",\"1.8\",\"1.6\",\"2.5\",\"2.4\",\"4.5\",\"4.8\",\"2.3\",\"3.0\",\"2.5\",\"2.3\",\"3.0\",\"3.4\",\"3.5\",\"2.3\",\"4.0\",\"2.1\",\"1.7\",\"2.3\",\"3.3\",\"3.5\",\"2.3\",\"1.8\",\"1.7\",\"3.3\",\"2.3\",\"3.5\",\"4.7\",\"3.2\",\"4.0\",\"4.7\",\"1.6\",\"2.4\",\"2.2\",\"3.4\",\"3.7\",\"3.3\",\"2.9\",\"1.9\",\"2.2\",\"3.2\",\"3.6\",\"2.2\",\"2.0\",\"2.4\",\"2.0\",\"3.8\",\"4.4\",\"2.7\",\"1.7\",\"2.3\",\"3.2\",\"3.2\",\"3.8\",\"4.1\",\"2.6\",\"3.2\",\"1.6\",\"3.4\",\"3.7\",\"4.1\",\"4.6\",\"4.0\",\"4.3\",\"2.2\",\"2.3\",\"3.2\",\"2.8\",\"3.5\",\"3.2\",\"3.0\",\"2.2\",\"2.3\",\"3.0\",\"3.7\",\"2.4\",\"2.4\",\"3.4\",\"3.7\",\"3.4\",\"3.6\",\"4.0\",\"2.3\",\"1.7\",\"3.0\",\"2.8\",\"2.3\",\"3.5\",\"4.9\",\"2.2\",\"2.7\",\"1.7\",\"3.5\",\"3.1\",\"3.4\",\"2.2\",\"3.3\",\"3.3\",\"2.4\",\"4.4\",\"4.8\",\"1.5\",\"2.9\",\"2.4\",\"2.2\",\"2.3\",\"3.6\",\"4.1\",\"3.1\",\"2.1\",\"1.8\",\"3.1\",\"3.9\",\"2.7\",\"3.1\",\"3.0\",\"2.9\",\"3.7\",\"2.1\",\"3.1\",\"1.7\",\"2.6\",\"2.6\",\"2.9\",\"2.3\",\"2.5\",\"3.9\",\"2.7\",\"2.6\",\"3.1\",\"3.4\",\"2.9\",\"2.3\",\"2.7\",\"2.7\",\"2.8\",\"3.2\",\"2.6\",\"4.8\",\"4.4\",\"2.7\",\"2.3\",\"1.6\",\"3.9\",\"2.8\",\"1.7\",\"2.2\",\"3.0\",\"2.7\",\"4.0\",\"3.3\",\"2.3\",\"2.6\",\"3.1\",\"2.3\",\"4.2\",\"2.3\",\"2.1\",\"2.2\",\"2.5\",\"3.4\",\"2.6\",\"2.3\",\"1.5\",\"3.4\",\"4.0\",\"3.1\",\"4.5\",\"2.9\",\"3.0\",\"3.1\",\"3.7\",\"2.9\",\"3.6\",\"4.5\",\"3.0\",\"2.1\",\"2.6\",\"2.4\",\"3.2\",\"2.1\",\"1.6\",\"2.5\",\"3.1\",\"2.6\",\"3.7\",\"2.2\",\"2.3\",\"2.7\",\"2.5\",\"3.0\",\"4.5\",\"4.4\",\"1.8\",\"3.3\",\"2.1\",\"3.6\",\"3.6\",\"4.5\",\"2.0\",\"1.7\",\"3.3\",\"3.9\",\"3.6\",\"4.7\",\"4.5\",\"4.8\",\"2.7\",\"2.1\",\"2.6\",\"1.9\",\"2.2\",\"3.7\",\"2.2\",\"4.4\",\"4.9\",\"4.2\",\"2.4\",\"2.4\",\"2.4\",\"3.8\",\"2.7\",\"2.5\",\"2.0\",\"2.5\",\"2.8\",\"3.4\",\"2.7\",\"3.2\",\"3.0\",\"3.4\",\"4.4\",\"1.8\",\"3.3\",\"2.4\",\"2.4\",\"3.3\",\"4.0\",\"4.3\",\"2.7\",\"3.2\",\"1.7\",\"3.6\",\"3.0\",\"4.1\",\"4.3\",\"2.4\",\"2.9\",\"3.0\",\"3.1\",\"3.8\",\"3.9\",\"2.4\",\"2.1\",\"3.0\",\"4.0\",\"2.9\",\"3.3\",\"4.8\",\"2.8\",\"2.9\",\"1.6\",\"2.4\",\"3.6\",\"3.1\",\"4.2\",\"1.5\",\"3.2\",\"3.5\",\"3.6\",\"2.3\",\"2.3\",\"3.3\",\"2.4\",\"3.9\",\"3.3\",\"4.0\",\"4.1\",\"1.8\",\"2.2\",\"3.3\",\"2.1\",\"2.8\",\"2.8\",\"2.2\",\"1.9\",\"3.3\",\"3.1\",\"4.8\",\"4.2\",\"3.0\",\"2.3\",\"2.5\",\"2.2\",\"2.8\",\"3.4\",\"1.9\",\"2.6\",\"1.8\",\"2.2\",\"3.0\",\"3.2\",\"2.8\",\"3.2\",\"2.0\",\"2.7\",\"5.0\",\"4.8\",\"4.2\",\"2.2\",\"2.2\",\"2.8\",\"3.2\",\"3.5\",\"2.4\",\"1.9\",\"3.2\",\"3.8\",\"2.6\",\"3.0\",\"1.5\",\"2.5\",\"3.0\",\"3.5\",\"3.5\",\"4.8\",\"3.4\",\"3.2\",\"2.2\",\"2.9\",\"3.7\",\"4.0\",\"4.3\",\"1.9\",\"2.3\",\"2.2\",\"3.4\",\"2.7\",\"4.2\",\"4.6\",\"3.4\",\"1.9\",\"3.1\",\"3.1\",\"2.7\",\"4.9\",\"1.7\",\"1.7\",\"1.8\",\"3.7\",\"4.0\",\"4.2\",\"5.0\",\"3.4\",\"2.6\",\"2.0\",\"2.9\",\"2.3\",\"1.6\",\"2.2\",\"2.5\",\"3.2\",\"3.9\",\"1.8\",\"2.7\",\"2.2\",\"3.5\",\"3.1\",\"4.6\",\"1.6\",\"3.1\",\"1.9\",\"2.8\",\"2.9\",\"4.2\",\"3.1\",\"2.7\",\"3.1\",\"2.4\",\"2.4\",\"3.9\",\"4.3\",\"3.2\",\"3.1\",\"2.6\",\"2.5\",\"2.8\",\"4.8\",\"1.7\",\"3.2\",\"1.7\",\"2.1\",\"2.6\",\"4.9\",\"2.1\",\"1.7\",\"1.9\",\"2.1\",\"3.3\",\"4.0\",\"2.5\",\"2.5\",\"3.1\",\"3.9\",\"2.9\",\"4.9\",\"4.6\",\"2.0\",\"3.4\",\"3.4\",\"2.7\",\"3.1\",\"3.7\",\"4.7\",\"2.0\",\"2.4\",\"3.4\",\"3.6\",\"2.9\",\"3.3\",\"4.7\",\"3.4\",\"1.6\",\"2.8\",\"2.8\",\"2.2\",\"3.6\",\"1.6\",\"1.8\",\"3.4\",\"3.7\",\"3.6\",\"4.9\",\"3.4\",\"4.9\",\"4.9\",\"3.1\",\"3.2\",\"2.7\",\"2.2\",\"3.2\",\"3.8\",\"2.2\",\"2.3\",\"2.4\",\"2.4\",\"2.9\",\"3.2\",\"2.5\",\"2.9\",\"3.6\",\"2.9\",\"5.0\",\"4.4\",\"3.1\",\"2.1\",\"2.5\",\"3.3\",\"3.8\",\"1.9\",\"2.8\",\"2.7\",\"2.9\",\"3.0\",\"3.4\",\"4.8\",\"1.8\",\"1.7\",\"1.9\",\"2.8\",\"3.5\",\"3.7\",\"2.5\",\"2.9\",\"1.9\",\"3.5\",\"2.5\",\"2.4\",\"2.9\",\"1.6\",\"3.3\",\"3.3\",\"4.8\",\"4.8\",\"2.0\",\"2.5\",\"2.2\",\"2.9\",\"2.7\",\"4.6\",\"3.3\",\"4.4\",\"4.8\",\"4.9\",\"2.7\",\"2.6\",\"2.3\",\"2.0\",\"2.5\",\"2.4\",\"2.5\",\"2.5\",\"2.6\",\"3.5\",\"3.3\",\"3.4\",\"4.3\",\"4.9\",\"3.1\",\"1.8\",\"1.9\",\"3.5\",\"2.4\",\"4.1\",\"2.8\",\"2.1\",\"3.2\",\"2.6\",\"3.9\",\"1.8\",\"2.3\",\"1.6\",\"3.4\",\"2.1\",\"4.3\",\"4.9\",\"3.3\",\"2.1\",\"2.9\",\"2.0\",\"2.0\",\"4.5\",\"4.1\",\"2.7\",\"3.1\",\"2.9\",\"3.0\",\"3.3\",\"4.7\",\"2.3\",\"3.2\",\"2.1\",\"2.0\",\"2.3\",\"4.7\",\"5.0\",\"3.5\",\"3.4\",\"3.2\",\"3.7\",\"3.4\",\"3.0\",\"3.2\",\"2.2\",\"2.5\",\"3.3\",\"2.6\",\"4.4\",\"4.3\",\"4.5\",\"4.9\",\"2.5\",\"2.0\",\"2.3\",\"1.6\",\"3.4\",\"3.4\",\"3.5\",\"3.7\",\"2.1\",\"2.9\",\"2.4\",\"3.2\",\"3.3\",\"2.4\",\"3.4\",\"2.4\",\"3.7\",\"3.0\",\"3.3\",\"4.8\",\"2.2\",\"1.8\",\"2.3\",\"3.1\",\"2.7\",\"3.5\",\"4.7\",\"4.8\",\"4.1\",\"2.9\",\"1.8\",\"2.5\",\"2.2\",\"2.5\",\"2.8\",\"4.8\",\"4.5\",\"1.7\",\"2.1\",\"2.4\",\"2.2\",\"3.0\",\"3.6\",\"4.3\",\"3.3\",\"2.3\",\"3.3\",\"3.8\",\"2.3\",\"1.9\",\"1.9\",\"1.9\",\"3.7\",\"2.1\",\"1.8\",\"2.9\",\"3.3\",\"3.9\",\"2.9\",\"2.7\",\"3.3\",\"2.2\",\"2.5\",\"2.8\",\"1.6\",\"2.9\",\"2.4\",\"3.4\",\"3.5\",\"2.7\",\"2.1\",\"2.9\",\"3.6\",\"3.3\",\"4.9\",\"1.6\",\"1.8\",\"3.0\",\"2.8\",\"3.3\",\"1.7\",\"2.5\",\"2.7\",\"2.8\",\"3.9\",\"4.0\",\"4.1\",\"1.9\",\"2.5\",\"2.1\",\"2.8\",\"3.0\",\"4.5\",\"3.3\",\"1.7\",\"1.7\",\"2.2\",\"2.7\",\"4.7\",\"4.0\",\"3.1\",\"1.8\",\"2.2\",\"2.6\",\"2.9\",\"4.4\",\"2.2\",\"3.4\",\"2.6\",\"3.5\",\"2.7\",\"4.8\",\"1.8\",\"2.2\",\"1.9\",\"2.7\",\"3.7\",\"3.1\",\"2.4\",\"3.2\",\"3.3\",\"3.1\",\"2.6\",\"3.8\",\"2.0\",\"3.4\",\"3.2\",\"3.7\",\"2.4\",\"4.9\",\"2.5\",\"2.7\",\"2.3\",\"2.6\",\"2.3\",\"4.7\",\"4.6\",\"2.3\",\"3.0\",\"1.5\",\"2.3\",\"2.1\",\"1.6\",\"3.4\",\"2.8\",\"3.6\",\"3.1\",\"3.8\",\"2.6\",\"3.3\",\"2.8\",\"4.0\",\"2.0\",\"4.9\",\"4.7\",\"2.1\",\"2.8\",\"1.5\",\"2.3\",\"3.6\",\"5.0\",\"2.5\",\"3.1\",\"1.9\",\"2.8\",\"3.8\",\"3.5\",\"2.6\",\"2.0\",\"2.0\",\"3.7\",\"2.8\",\"3.3\",\"2.4\",\"3.5\",\"4.0\",\"3.2\",\"3.6\",\"2.9\",\"3.4\",\"2.9\",\"3.8\",\"2.9\",\"1.5\",\"2.7\",\"3.2\",\"3.0\",\"3.2\",\"4.2\",\"2.2\",\"2.9\",\"2.6\",\"2.3\",\"3.0\",\"4.1\",\"2.1\",\"1.6\",\"3.2\",\"3.5\",\"3.9\",\"4.3\",\"3.3\",\"2.1\",\"2.5\",\"3.6\",\"3.8\",\"3.1\",\"4.3\",\"2.4\",\"2.8\",\"2.5\",\"3.8\",\"2.7\",\"4.4\",\"4.7\",\"2.2\",\"3.1\",\"2.4\",\"2.3\",\"2.6\",\"3.9\",\"2.1\",\"1.8\",\"2.9\",\"2.7\",\"3.2\",\"4.3\",\"4.1\",\"2.7\",\"1.7\",\"2.1\",\"2.4\",\"2.0\",\"3.2\",\"1.6\",\"3.2\",\"3.8\",\"2.6\",\"3.4\",\"2.4\",\"2.9\",\"2.9\",\"2.5\",\"4.0\",\"4.6\",\"2.4\",\"1.6\",\"1.8\",\"4.0\",\"2.6\",\"4.7\",\"4.2\",\"1.6\",\"3.0\",\"3.4\",\"3.1\",\"3.1\",\"4.5\",\"4.7\",\"1.7\",\"1.8\",\"1.9\",\"2.8\",\"2.0\",\"3.7\",\"2.5\",\"1.7\",\"2.3\",\"3.2\",\"3.1\",\"3.5\",\"2.8\",\"2.4\",\"3.4\",\"3.5\",\"3.9\",\"4.4\",\"4.8\",\"3.3\",\"2.9\",\"2.2\",\"2.8\",\"2.8\",\"1.5\",\"3.2\",\"2.4\",\"2.7\",\"2.2\",\"3.4\",\"4.1\",\"4.2\",\"2.7\",\"2.4\",\"2.1\",\"3.9\",\"3.9\",\"1.6\",\"1.6\",\"3.4\",\"2.7\",\"3.5\",\"4.6\",\"3.5\",\"3.0\",\"2.4\",\"4.0\",\"2.2\",\"4.3\",\"1.7\",\"3.3\",\"2.7\",\"2.8\",\"2.5\",\"3.2\",\"3.1\",\"1.5\",\"2.5\",\"3.2\",\"1.7\",\"2.9\",\"2.1\",\"2.7\",\"4.0\",\"3.9\",\"2.3\",\"3.1\",\"1.6\",\"3.8\",\"2.2\",\"2.6\",\"3.4\",\"3.5\",\"3.1\",\"3.8\",\"1.6\",\"1.9\",\"2.0\",\"2.4\",\"2.5\",\"4.4\",\"1.7\",\"3.2\",\"2.4\",\"3.2\",\"3.7\",\"4.0\",\"4.3\",\"2.5\",\"3.1\",\"2.3\",\"3.1\",\"3.5\",\"2.3\",\"1.8\",\"2.5\",\"4.0\",\"3.8\",\"4.8\",\"4.3\",\"2.4\",\"2.4\",\"2.0\",\"2.2\",\"2.7\",\"2.8\",\"2.0\",\"2.9\",\"2.2\",\"2.3\",\"4.4\",\"2.6\",\"2.1\",\"1.7\",\"3.0\",\"2.4\",\"4.6\",\"4.5\",\"2.4\",\"2.4\",\"3.2\",\"3.2\",\"3.0\",\"3.2\",\"4.9\",\"1.9\",\"3.4\",\"2.8\",\"2.3\",\"3.2\",\"4.5\",\"2.8\",\"3.4\",\"2.0\",\"2.6\",\"3.9\",\"3.2\",\"2.3\",\"2.6\",\"2.4\",\"2.7\",\"3.0\",\"2.4\",\"2.2\",\"3.3\",\"3.3\",\"2.3\",\"3.1\",\"4.0\",\"2.9\",\"2.7\",\"1.9\",\"3.2\",\"2.8\",\"2.8\",\"2.3\",\"1.6\",\"2.5\",\"2.2\",\"4.1\",\"4.3\",\"4.4\",\"2.7\",\"2.7\",\"2.3\",\"4.0\",\"2.3\",\"1.6\",\"2.9\",\"2.1\",\"3.9\",\"4.4\",\"4.3\",\"2.8\",\"3.4\",\"1.6\",\"3.3\",\"3.7\",\"3.8\",\"2.3\",\"2.7\",\"3.5\",\"2.2\",\"2.1\",\"1.8\",\"2.3\",\"1.6\",\"2.6\",\"3.2\",\"2.8\",\"2.8\",\"3.0\",\"2.4\",\"3.9\",\"4.5\",\"4.8\",\"2.5\",\"2.8\",\"2.1\",\"3.2\",\"3.3\",\"3.8\",\"2.5\",\"3.4\",\"2.9\",\"2.1\",\"2.9\",\"3.7\",\"4.2\",\"2.2\",\"3.2\",\"1.7\",\"3.3\",\"3.8\",\"4.6\",\"4.0\",\"1.7\",\"2.7\",\"1.8\",\"2.8\",\"2.1\",\"3.4\",\"1.5\",\"1.9\",\"3.2\",\"2.2\",\"3.3\",\"1.5\",\"2.6\",\"3.7\",\"3.3\",\"4.5\",\"5.0\",\"2.6\",\"2.9\",\"2.4\",\"2.1\",\"3.3\",\"1.9\",\"3.3\",\"1.9\",\"3.8\",\"2.5\",\"3.2\",\"2.5\",\"3.2\",\"2.7\",\"3.5\",\"2.8\",\"4.7\",\"4.5\",\"3.1\",\"2.4\",\"2.5\",\"2.5\",\"3.4\",\"3.1\",\"4.3\",\"4.8\",\"2.9\",\"2.8\",\"2.3\",\"3.8\",\"4.0\",\"3.8\",\"3.1\",\"3.0\",\"2.2\",\"3.4\",\"3.7\",\"3.1\",\"3.1\",\"1.6\",\"1.8\",\"3.8\",\"3.4\",\"4.0\",\"4.9\",\"2.4\",\"2.3\",\"2.7\",\"3.9\",\"2.2\",\"3.1\",\"2.6\",\"1.9\",\"3.0\",\"3.0\",\"2.6\",\"1.9\",\"2.5\",\"1.7\",\"2.7\",\"2.2\",\"4.4\",\"4.9\",\"3.4\",\"2.4\",\"2.5\",\"2.2\",\"2.1\",\"3.2\",\"4.9\",\"4.9\",\"2.3\",\"2.2\",\"3.0\",\"3.1\",\"3.8\",\"3.3\",\"1.5\",\"2.2\",\"3.9\",\"2.6\",\"3.8\",\"3.2\",\"3.4\",\"3.4\",\"2.2\",\"2.5\",\"2.9\",\"3.3\",\"1.6\",\"3.5\",\"2.9\",\"3.4\",\"2.9\",\"2.5\",\"2.8\",\"3.9\",\"2.2\",\"4.2\",\"3.3\",\"1.6\",\"3.5\",\"2.1\",\"3.1\",\"4.5\",\"1.6\",\"2.3\",\"2.9\",\"3.2\",\"3.5\",\"3.6\",\"4.1\",\"3.1\",\"3.4\",\"1.6\",\"2.9\",\"4.0\",\"3.9\",\"4.9\",\"2.1\",\"1.8\",\"1.7\",\"3.9\",\"2.7\",\"2.4\",\"1.8\",\"3.0\",\"3.6\",\"2.8\",\"4.9\",\"2.7\",\"3.1\",\"1.9\",\"3.0\",\"3.7\",\"3.8\",\"2.9\",\"1.8\",\"3.0\",\"3.5\",\"3.1\",\"4.3\",\"4.0\",\"2.6\",\"2.2\",\"3.0\",\"3.0\",\"2.8\",\"3.8\",\"4.3\",\"2.1\",\"2.7\",\"2.5\",\"3.6\",\"2.4\",\"3.2\",\"4.1\",\"2.5\",\"1.9\",\"3.1\",\"2.8\",\"2.2\",\"2.1\",\"2.5\",\"2.4\",\"3.4\",\"2.5\",\"3.1\",\"2.0\",\"3.0\",\"3.6\",\"2.6\",\"5.0\",\"4.3\",\"1.8\",\"2.0\",\"1.6\",\"3.3\",\"3.3\",\"1.7\",\"2.8\",\"3.2\",\"3.6\",\"3.6\",\"4.8\",\"4.1\",\"1.6\",\"2.1\",\"2.7\",\"2.8\",\"3.9\",\"3.5\",\"4.7\",\"2.9\",\"1.7\",\"3.2\",\"2.4\",\"3.0\",\"3.6\",\"4.9\",\"2.4\",\"2.4\",\"2.0\",\"3.0\",\"3.3\",\"4.1\",\"2.4\",\"3.3\",\"2.1\",\"3.2\",\"3.0\",\"4.4\",\"3.4\",\"4.8\",\"2.4\",\"1.6\",\"2.5\",\"2.4\",\"3.1\",\"1.8\",\"1.6\",\"3.2\",\"2.6\",\"3.9\",\"4.3\",\"4.7\",\"2.2\",\"3.1\",\"1.9\",\"3.8\",\"2.9\",\"3.1\",\"4.7\",\"2.5\",\"3.3\",\"2.1\",\"2.6\",\"2.9\",\"4.7\",\"1.5\",\"1.6\",\"2.5\",\"2.3\",\"3.0\",\"4.3\",\"3.0\",\"2.5\",\"3.2\",\"2.1\",\"3.6\",\"3.1\",\"4.2\",\"1.7\",\"2.6\",\"2.5\",\"3.0\",\"2.4\",\"2.1\",\"2.7\",\"2.6\",\"3.9\",\"3.6\",\"3.7\",\"4.1\",\"3.3\",\"2.8\",\"3.4\",\"3.6\",\"2.5\",\"4.8\",\"2.7\",\"3.4\",\"2.0\",\"3.2\",\"3.7\",\"3.9\",\"2.6\",\"3.4\",\"2.9\",\"2.8\",\"2.1\",\"3.2\",\"3.2\",\"1.6\",\"2.3\",\"3.5\",\"3.2\",\"3.5\",\"2.9\",\"2.4\",\"2.5\",\"3.5\",\"2.5\",\"3.0\",\"3.3\",\"2.5\",\"2.3\",\"3.5\",\"3.0\",\"1.9\",\"2.5\",\"3.2\",\"2.8\",\"2.5\",\"3.6\",\"3.3\",\"2.6\",\"2.4\",\"2.1\",\"2.7\",\"3.9\",\"2.4\",\"3.2\",\"2.8\",\"3.3\",\"3.9\",\"3.1\",\"4.9\",\"2.1\",\"2.0\",\"2.5\",\"4.0\",\"2.8\",\"3.3\",\"3.3\",\"1.6\",\"3.5\",\"3.2\",\"3.8\",\"2.5\",\"2.1\",\"2.8\",\"2.0\",\"4.0\",\"4.7\",\"4.6\",\"1.8\",\"2.2\",\"2.8\",\"2.0\",\"3.5\",\"4.2\",\"4.5\",\"2.6\",\"2.7\",\"2.7\",\"3.9\",\"3.0\",\"3.8\",\"4.7\",\"1.8\",\"3.4\",\"2.4\",\"3.1\",\"2.1\",\"5.0\",\"4.7\",\"2.7\",\"2.4\",\"2.3\",\"3.6\",\"3.1\",\"3.4\",\"2.3\",\"2.2\",\"1.9\",\"3.9\",\"3.9\",\"4.5\",\"3.1\",\"3.1\",\"2.1\",\"3.4\",\"2.1\",\"2.1\",\"1.8\",\"2.4\",\"3.3\",\"2.2\",\"4.4\",\"1.5\",\"1.5\",\"1.8\",\"3.1\",\"2.8\",\"4.1\",\"2.5\",\"2.4\",\"1.7\",\"3.8\",\"3.6\",\"3.0\",\"2.2\",\"2.3\",\"2.6\",\"2.6\",\"2.8\",\"4.2\",\"4.2\",\"3.1\",\"1.5\",\"2.8\",\"3.4\",\"3.3\",\"3.3\",\"1.9\",\"3.3\",\"2.4\",\"2.5\",\"3.4\",\"2.2\",\"1.9\",\"3.3\",\"3.8\",\"4.5\",\"4.1\",\"2.3\",\"2.1\",\"1.9\",\"3.3\",\"2.8\",\"2.2\",\"3.0\",\"2.9\",\"2.0\",\"3.9\",\"2.7\",\"1.8\",\"3.4\",\"2.8\",\"2.3\",\"1.6\",\"2.7\",\"1.9\",\"3.1\",\"2.9\",\"1.6\",\"1.8\",\"2.3\",\"2.8\",\"3.0\",\"3.6\",\"2.9\",\"2.2\",\"2.4\",\"2.2\",\"3.4\",\"4.3\",\"3.4\",\"2.3\",\"3.4\",\"3.4\",\"2.3\",\"1.7\",\"3.4\",\"2.6\",\"2.8\",\"3.2\",\"4.5\",\"4.8\",\"1.9\",\"3.2\",\"2.1\",\"3.5\",\"2.6\",\"3.4\",\"2.7\",\"1.6\",\"2.1\",\"3.4\",\"2.8\",\"3.3\",\"2.1\",\"3.1\",\"2.6\",\"2.7\",\"3.8\",\"3.4\",\"4.7\",\"4.1\",\"4.5\",\"4.4\",\"2.7\",\"1.8\",\"3.4\",\"2.7\",\"3.7\",\"3.8\",\"5.0\",\"4.2\",\"4.5\",\"4.5\",\"2.3\",\"3.4\",\"1.7\",\"2.1\",\"3.8\",\"1.8\",\"2.6\",\"2.6\",\"3.0\",\"2.3\",\"3.5\",\"2.7\",\"2.4\",\"2.4\",\"2.7\",\"2.1\",\"1.9\",\"1.5\",\"3.3\",\"3.7\",\"2.7\",\"4.1\",\"4.9\",\"2.1\",\"1.5\",\"1.9\",\"3.0\",\"3.9\",\"3.7\",\"4.6\",\"4.9\",\"2.1\",\"2.0\",\"2.7\",\"3.6\",\"3.7\",\"1.6\",\"3.2\",\"2.7\",\"3.2\",\"3.3\",\"4.6\",\"2.1\",\"3.2\",\"2.7\",\"2.9\",\"3.0\",\"2.9\",\"2.6\",\"1.7\",\"3.5\",\"3.9\",\"2.1\",\"3.1\",\"1.6\",\"3.7\",\"3.7\",\"3.3\",\"4.8\",\"2.7\",\"3.5\",\"1.7\",\"2.5\",\"3.1\",\"4.3\",\"1.5\",\"1.6\",\"2.7\",\"2.8\",\"3.5\",\"3.8\",\"3.5\",\"2.9\",\"2.4\",\"3.7\",\"3.7\",\"1.5\",\"1.7\",\"2.2\",\"2.2\",\"2.8\",\"1.5\",\"2.3\",\"2.1\",\"2.2\",\"2.0\",\"4.4\",\"4.9\",\"2.2\",\"2.6\",\"2.3\",\"2.2\",\"2.3\",\"1.9\",\"2.8\",\"1.8\",\"2.2\",\"3.8\",\"3.1\",\"3.2\",\"2.8\",\"1.8\",\"3.3\",\"3.4\",\"1.8\",\"3.3\",\"3.3\",\"2.3\",\"4.0\",\"4.3\",\"3.1\",\"2.9\",\"2.8\",\"3.4\",\"3.5\",\"2.0\",\"4.0\",\"4.2\",\"2.0\",\"1.7\",\"2.3\",\"2.5\",\"2.6\",\"3.2\",\"3.5\",\"2.6\",\"3.5\",\"2.1\",\"4.6\",\"4.6\",\"2.9\",\"2.0\",\"3.3\",\"3.8\",\"3.1\",\"4.7\",\"3.1\",\"3.0\",\"2.1\",\"3.4\",\"2.9\",\"2.0\",\"2.7\",\"2.8\",\"3.8\",\"2.2\",\"4.7\",\"2.2\",\"3.4\",\"2.2\",\"2.8\",\"2.2\",\"4.9\",\"1.9\",\"3.2\",\"2.6\",\"2.3\",\"3.0\",\"3.5\",\"3.5\",\"2.1\",\"3.4\",\"3.3\",\"2.9\",\"2.9\",\"2.1\",\"2.6\",\"3.1\",\"3.3\",\"4.2\",\"1.9\",\"2.1\",\"3.5\",\"2.0\",\"2.4\",\"3.2\",\"4.5\",\"2.6\",\"2.3\",\"2.1\",\"3.7\",\"3.6\",\"4.4\",\"1.9\",\"3.2\",\"1.6\",\"2.6\",\"3.4\",\"2.2\",\"2.5\",\"3.4\",\"2.2\",\"3.5\",\"3.5\",\"4.0\",\"2.6\",\"2.8\",\"1.8\",\"3.5\",\"3.5\",\"3.2\",\"2.6\",\"2.1\",\"3.9\",\"2.1\",\"2.2\",\"3.2\",\"3.0\",\"3.9\",\"3.5\",\"4.4\",\"4.4\",\"3.0\",\"2.8\",\"3.1\",\"3.4\",\"4.0\",\"4.7\",\"3.0\",\"1.5\",\"2.9\",\"2.2\",\"2.6\",\"4.4\",\"2.6\",\"1.6\",\"3.3\",\"3.1\",\"3.1\",\"3.1\",\"4.1\",\"4.1\",\"4.4\",\"4.1\",\"2.3\",\"2.6\",\"2.9\",\"2.6\",\"3.6\",\"3.4\",\"2.5\",\"3.1\",\"2.7\",\"3.2\",\"2.8\",\"2.9\",\"2.6\",\"1.5\",\"3.6\",\"2.2\",\"1.8\",\"3.4\",\"3.2\",\"2.5\",\"3.7\",\"4.3\",\"2.0\",\"2.9\",\"2.5\",\"3.8\",\"3.0\",\"4.1\",\"2.5\",\"2.6\",\"3.2\",\"2.4\",\"3.5\",\"1.9\",\"2.4\",\"2.9\",\"2.7\",\"3.3\",\"1.6\",\"2.2\",\"1.8\",\"3.6\",\"2.1\",\"4.1\",\"4.9\",\"2.0\",\"1.6\",\"2.1\",\"3.8\",\"2.0\",\"3.2\",\"2.1\",\"3.4\",\"3.1\",\"2.9\",\"4.2\",\"4.8\",\"4.6\",\"4.1\",\"2.8\",\"2.9\",\"2.8\",\"2.3\",\"3.3\",\"1.8\",\"2.2\",\"2.9\",\"4.9\",\"4.3\",\"2.8\",\"2.2\",\"1.6\",\"3.1\",\"3.3\",\"4.6\",\"4.5\",\"2.5\",\"2.7\",\"2.5\",\"2.9\",\"3.5\",\"3.2\",\"4.2\",\"2.8\",\"3.3\",\"3.1\",\"3.2\",\"2.6\",\"2.5\",\"1.7\",\"3.4\",\"3.2\",\"2.8\",\"2.4\",\"1.6\",\"1.5\",\"2.3\",\"3.8\",\"3.5\",\"2.8\",\"3.1\",\"1.5\",\"2.5\",\"3.7\",\"4.3\",\"4.0\",\"4.1\",\"2.8\",\"2.8\",\"2.6\",\"3.3\",\"3.6\",\"3.9\",\"2.4\",\"2.8\",\"3.3\",\"2.4\",\"4.0\",\"4.5\",\"3.2\",\"2.4\",\"2.2\",\"3.0\",\"2.5\",\"3.5\",\"4.2\",\"1.7\",\"2.0\",\"2.5\",\"3.2\",\"3.6\",\"4.5\",\"4.7\",\"1.9\",\"3.4\",\"2.8\",\"3.2\",\"3.4\",\"4.9\",\"2.0\",\"1.9\",\"2.3\",\"3.8\",\"3.1\",\"3.4\",\"3.3\",\"2.4\",\"2.7\",\"2.4\",\"4.9\",\"2.6\",\"2.0\",\"1.6\",\"3.4\",\"3.0\",\"4.7\",\"3.0\",\"3.4\",\"2.0\",\"3.8\",\"3.2\",\"4.1\",\"1.9\",\"2.9\",\"1.6\",\"3.0\",\"3.5\",\"4.0\",\"2.7\",\"2.3\",\"2.7\",\"2.0\",\"2.7\",\"3.2\",\"3.1\",\"3.3\",\"2.1\",\"3.1\",\"4.6\",\"2.5\",\"3.0\",\"2.8\",\"2.8\",\"2.5\",\"4.3\",\"2.0\",\"2.8\",\"2.0\",\"3.4\",\"3.0\",\"4.3\",\"4.4\",\"2.4\",\"3.4\",\"3.4\",\"2.3\",\"3.4\",\"4.6\",\"2.7\",\"2.5\",\"3.3\",\"3.2\",\"3.8\",\"3.3\",\"4.0\",\"4.7\",\"4.9\",\"2.5\",\"2.1\",\"2.1\",\"3.8\",\"2.3\",\"2.7\",\"3.2\",\"3.6\",\"3.0\",\"3.2\",\"4.9\",\"4.7\",\"4.3\",\"2.4\",\"2.7\",\"2.1\",\"3.5\",\"3.8\",\"3.1\",\"2.4\",\"2.1\",\"2.6\",\"2.9\",\"3.9\",\"4.2\",\"1.6\",\"1.7\",\"2.4\",\"2.1\",\"4.0\",\"4.2\",\"5.0\",\"4.5\",\"5.0\",\"2.3\",\"2.2\",\"3.5\",\"1.7\",\"3.6\",\"3.8\",\"4.0\",\"4.3\",\"3.3\",\"3.2\",\"2.9\",\"2.1\",\"2.4\",\"3.6\",\"3.1\",\"1.7\",\"2.5\",\"3.9\",\"3.1\",\"4.0\",\"4.7\",\"2.5\",\"2.5\",\"2.7\",\"3.3\",\"3.6\",\"4.6\",\"3.2\",\"2.9\",\"3.2\",\"3.5\",\"2.3\",\"3.6\",\"4.4\",\"4.3\",\"4.6\",\"2.4\",\"3.4\",\"1.7\",\"3.2\",\"2.2\",\"3.8\",\"4.9\",\"4.8\",\"2.3\",\"2.5\",\"2.3\",\"3.1\",\"3.1\",\"1.9\",\"3.1\",\"3.9\",\"3.9\",\"4.7\",\"4.5\",\"2.3\",\"2.1\",\"2.3\",\"3.3\",\"3.8\",\"3.2\",\"2.0\",\"2.9\",\"3.3\",\"2.6\",\"3.6\",\"4.1\",\"2.6\",\"2.9\",\"2.1\",\"3.7\",\"3.7\",\"2.4\",\"2.5\",\"2.8\",\"2.2\",\"3.3\",\"3.9\",\"1.9\",\"2.3\",\"3.3\",\"3.9\",\"3.7\",\"4.9\",\"2.6\",\"3.4\",\"1.8\",\"3.9\",\"3.5\",\"4.6\",\"1.6\",\"2.2\",\"2.2\",\"3.1\",\"2.7\",\"3.8\",\"4.9\",\"3.2\",\"3.1\",\"1.7\",\"2.4\",\"2.1\",\"3.4\",\"3.0\",\"3.3\",\"2.0\",\"2.3\",\"2.6\",\"3.4\",\"1.7\",\"2.9\",\"3.2\",\"3.9\",\"2.9\",\"3.8\",\"2.6\",\"1.9\",\"3.2\",\"2.4\",\"2.2\",\"4.2\",\"4.1\",\"3.5\",\"2.0\",\"2.7\",\"2.1\",\"3.1\",\"2.0\",\"3.2\",\"2.8\",\"2.5\",\"2.8\",\"2.4\",\"3.3\",\"3.1\",\"3.4\",\"3.7\",\"2.8\",\"2.2\",\"3.4\",\"2.6\",\"2.2\",\"4.9\",\"2.1\",\"2.1\",\"2.0\",\"3.5\",\"2.8\",\"3.3\",\"3.2\",\"3.3\",\"2.5\",\"2.3\",\"3.1\",\"4.3\",\"1.8\",\"1.8\",\"2.5\",\"2.0\",\"2.6\",\"1.6\",\"2.2\",\"2.4\",\"2.4\",\"2.1\",\"2.2\",\"3.1\",\"1.9\",\"3.3\",\"2.1\",\"3.7\",\"4.1\",\"3.1\",\"2.1\",\"1.6\",\"3.8\",\"3.4\",\"4.3\",\"4.5\",\"2.7\",\"2.4\",\"3.1\",\"2.1\",\"3.6\",\"4.6\",\"4.1\",\"3.2\",\"2.4\",\"1.9\",\"2.2\",\"2.5\",\"2.1\",\"2.4\",\"2.9\",\"2.3\",\"3.5\",\"3.3\",\"4.5\",\"2.7\",\"2.0\",\"2.8\",\"2.6\",\"2.8\",\"4.1\",\"4.7\",\"4.7\",\"2.1\",\"2.5\",\"3.2\",\"3.2\",\"3.2\",\"3.9\",\"3.4\",\"3.1\",\"2.5\",\"2.4\",\"3.5\",\"1.9\",\"3.2\",\"3.2\",\"2.8\",\"3.2\",\"3.0\",\"1.8\",\"1.5\",\"3.3\",\"3.7\",\"3.2\",\"3.8\",\"1.5\",\"2.9\",\"2.1\",\"3.9\",\"2.5\",\"4.2\",\"4.3\",\"2.2\",\"3.3\",\"2.9\",\"2.2\",\"3.6\",\"3.4\",\"3.4\",\"3.2\",\"3.6\",\"3.8\",\"4.7\",\"1.9\",\"2.1\",\"2.3\",\"2.8\",\"3.6\",\"2.9\",\"1.6\",\"2.0\",\"3.4\",\"2.6\",\"4.9\",\"4.4\",\"2.0\",\"2.2\",\"1.7\",\"3.2\",\"2.6\",\"1.7\",\"3.0\",\"1.6\",\"4.0\",\"2.9\",\"3.8\",\"4.9\",\"2.1\",\"2.7\",\"3.3\",\"2.2\",\"3.1\",\"3.8\",\"4.8\",\"2.7\",\"3.2\",\"1.9\",\"3.0\",\"3.8\",\"3.8\",\"3.0\",\"3.3\",\"1.8\",\"2.7\",\"2.6\",\"3.9\",\"4.4\",\"1.6\",\"2.6\",\"3.1\",\"2.7\",\"3.2\",\"4.2\",\"5.0\",\"3.4\",\"3.2\",\"2.9\",\"3.3\",\"3.2\",\"4.9\",\"4.4\",\"2.6\",\"2.4\",\"2.8\",\"3.5\",\"2.0\",\"4.9\",\"4.3\",\"3.1\",\"2.6\",\"1.6\",\"2.9\",\"2.9\",\"3.6\",\"1.8\",\"2.4\",\"3.3\",\"3.6\",\"2.2\",\"3.3\",\"3.1\",\"2.7\",\"3.2\",\"3.3\",\"3.4\",\"1.9\",\"1.8\",\"3.6\",\"3.4\",\"4.9\",\"4.0\",\"2.2\",\"2.1\",\"3.2\",\"3.0\",\"3.1\",\"4.2\",\"4.8\",\"1.8\",\"3.2\",\"1.9\",\"3.0\",\"2.4\",\"3.7\",\"4.7\",\"1.5\",\"3.1\",\"2.4\",\"2.7\",\"3.7\",\"3.4\",\"1.7\",\"1.8\",\"3.8\",\"3.3\",\"3.3\",\"4.3\",\"3.1\",\"3.0\",\"3.0\",\"2.6\",\"2.6\",\"1.7\",\"2.4\",\"2.5\",\"2.5\",\"2.8\",\"4.3\",\"3.4\",\"3.5\",\"2.0\",\"2.2\",\"3.5\",\"2.7\",\"3.2\",\"2.2\",\"4.0\",\"2.1\",\"3.5\",\"4.0\",\"2.5\",\"3.4\",\"2.0\",\"2.3\",\"3.7\",\"3.6\",\"1.6\",\"3.5\",\"2.2\",\"3.6\",\"3.8\",\"5.0\",\"4.3\",\"2.5\",\"1.8\",\"2.2\",\"3.9\",\"2.4\",\"1.5\",\"1.5\",\"2.2\",\"2.5\",\"2.5\",\"3.1\",\"1.8\",\"3.3\",\"3.3\",\"2.4\",\"4.6\",\"2.9\",\"2.9\",\"2.2\",\"2.3\",\"3.0\",\"4.9\",\"2.8\",\"1.9\",\"2.9\",\"3.7\",\"3.9\",\"4.6\",\"4.5\",\"2.0\",\"2.8\",\"2.5\",\"3.7\",\"3.8\",\"3.1\",\"4.8\",\"3.1\",\"2.6\",\"3.4\",\"3.3\",\"2.5\",\"3.2\",\"4.2\",\"4.5\",\"2.2\",\"2.5\",\"2.9\",\"3.9\",\"3.8\",\"3.3\",\"2.8\",\"3.3\",\"3.3\",\"3.9\",\"4.1\",\"3.2\",\"1.9\",\"3.1\",\"2.2\",\"3.5\",\"3.5\",\"4.9\",\"2.8\",\"2.1\",\"1.8\",\"2.1\",\"3.2\",\"4.0\",\"2.6\",\"3.5\",\"2.7\",\"2.9\",\"2.0\",\"3.0\",\"4.6\",\"1.6\",\"3.2\",\"1.6\",\"2.3\",\"2.3\",\"3.7\",\"3.1\",\"2.0\",\"2.7\",\"3.7\",\"4.0\",\"3.0\",\"2.8\",\"3.4\",\"1.8\",\"3.5\",\"2.2\",\"4.2\",\"3.5\",\"2.7\",\"1.7\",\"3.1\",\"3.7\",\"4.6\",\"2.4\",\"1.6\",\"3.3\",\"2.7\",\"3.9\",\"4.6\",\"4.9\",\"4.6\",\"4.2\",\"2.7\",\"3.4\",\"3.2\",\"1.6\",\"2.4\",\"2.2\",\"4.4\",\"4.9\",\"3.3\",\"3.2\",\"2.0\",\"3.5\",\"3.0\",\"4.1\",\"2.9\",\"3.4\",\"3.1\",\"3.2\",\"2.6\",\"3.7\",\"1.7\",\"3.2\",\"2.7\",\"3.8\",\"2.9\",\"4.7\",\"3.3\",\"2.5\",\"2.1\",\"3.2\",\"3.9\",\"3.7\",\"1.5\",\"3.5\",\"2.0\",\"2.4\",\"4.0\",\"3.0\",\"2.0\",\"2.3\",\"3.1\",\"3.7\",\"3.5\",\"2.6\",\"2.8\",\"2.3\",\"2.3\",\"2.6\",\"2.1\",\"2.7\",\"2.2\",\"2.2\",\"2.2\",\"3.7\",\"4.6\",\"3.4\",\"2.4\",\"2.7\",\"2.8\",\"3.8\",\"4.0\",\"5.0\",\"1.9\",\"3.3\",\"1.5\",\"3.3\",\"2.8\",\"4.3\",\"5.0\",\"2.0\",\"1.6\",\"1.8\",\"2.1\",\"2.2\",\"4.5\",\"3.1\",\"2.3\",\"2.0\",\"3.1\",\"3.9\",\"3.4\",\"2.9\",\"2.7\",\"3.2\",\"2.9\",\"3.7\",\"3.2\",\"4.2\",\"2.4\",\"1.7\",\"1.8\",\"2.1\",\"3.0\",\"2.6\",\"2.5\",\"3.2\",\"3.6\",\"3.6\",\"4.7\",\"2.5\",\"2.8\",\"2.7\",\"3.3\",\"2.9\",\"2.1\",\"3.2\",\"1.8\",\"2.8\",\"3.0\",\"4.0\",\"4.8\",\"2.7\",\"2.1\",\"2.6\",\"3.0\",\"2.6\",\"4.0\",\"4.8\",\"2.3\",\"2.7\",\"2.6\",\"2.6\",\"2.7\",\"4.2\",\"3.4\",\"3.0\",\"1.7\",\"2.8\",\"2.1\",\"3.2\",\"4.1\",\"3.1\",\"1.9\",\"1.6\",\"3.8\",\"3.0\",\"3.6\",\"4.2\",\"2.6\",\"2.4\",\"2.0\",\"3.7\",\"2.4\",\"4.9\",\"4.6\",\"3.2\",\"3.2\",\"2.2\",\"2.9\",\"3.4\",\"2.4\",\"3.1\",\"3.2\",\"3.0\",\"2.2\",\"3.7\",\"5.0\",\"4.0\",\"4.1\",\"2.8\",\"2.4\",\"2.2\",\"3.7\",\"1.9\",\"2.3\",\"1.8\",\"3.4\",\"3.6\",\"4.1\",\"4.7\",\"2.8\",\"1.8\",\"2.0\",\"2.2\",\"2.1\",\"4.8\",\"2.4\",\"3.3\",\"2.3\",\"2.7\",\"2.4\",\"4.8\",\"1.6\",\"2.6\",\"1.7\",\"3.7\",\"3.6\",\"4.6\",\"4.5\",\"1.6\",\"1.5\",\"2.9\",\"3.4\",\"2.8\",\"4.8\",\"4.5\",\"4.5\",\"2.6\",\"2.3\",\"2.3\",\"3.2\",\"3.6\",\"3.4\",\"3.3\",\"2.1\",\"2.0\",\"4.0\",\"2.1\",\"4.1\",\"4.4\",\"3.5\",\"3.3\",\"1.7\",\"3.2\",\"3.2\",\"2.7\",\"2.6\",\"1.5\",\"2.6\",\"2.0\",\"3.5\",\"4.1\",\"2.6\",\"3.1\",\"3.0\",\"3.4\",\"3.8\",\"3.4\",\"3.4\",\"3.1\",\"1.8\",\"2.6\",\"3.4\",\"3.6\",\"5.0\",\"2.4\",\"3.3\",\"2.8\",\"2.1\",\"3.9\",\"3.2\",\"4.1\",\"1.9\",\"3.0\",\"3.4\",\"2.9\",\"2.6\",\"3.8\",\"5.0\",\"3.0\",\"2.6\",\"2.7\",\"3.6\",\"3.4\",\"3.1\",\"1.8\",\"2.5\",\"2.2\",\"4.0\",\"4.0\",\"2.0\",\"3.4\",\"2.0\",\"2.3\",\"3.4\",\"1.9\",\"3.0\",\"2.1\",\"2.8\",\"2.6\",\"3.9\",\"4.3\",\"3.1\",\"2.4\",\"2.8\",\"2.3\",\"3.8\",\"3.5\",\"1.9\",\"2.7\",\"3.7\",\"3.9\",\"3.3\",\"2.9\",\"3.2\",\"3.2\",\"3.5\",\"3.2\",\"2.9\",\"2.1\",\"3.1\",\"2.2\",\"2.8\",\"2.2\",\"3.2\",\"2.8\",\"2.5\",\"3.0\",\"2.9\",\"2.4\",\"2.5\",\"2.3\",\"2.5\",\"4.2\",\"3.4\",\"3.2\",\"2.4\",\"2.3\",\"3.1\",\"4.6\",\"2.5\",\"1.7\",\"3.1\",\"2.4\",\"3.2\",\"3.2\",\"3.4\",\"3.2\",\"2.1\",\"3.3\",\"3.3\",\"4.2\",\"2.2\",\"3.2\",\"3.1\",\"3.4\",\"3.2\",\"4.8\",\"4.1\",\"2.0\",\"3.3\",\"1.6\",\"3.3\",\"2.6\",\"4.8\",\"4.6\",\"1.5\",\"2.4\",\"3.2\",\"2.4\",\"2.7\",\"3.4\",\"2.9\",\"2.1\",\"3.6\",\"3.3\",\"3.1\",\"3.0\",\"2.3\",\"2.8\",\"3.0\",\"4.2\",\"1.9\",\"2.3\",\"3.5\",\"2.7\",\"3.0\",\"2.8\",\"2.2\",\"3.0\",\"3.9\",\"2.5\",\"4.3\",\"4.3\",\"2.6\",\"3.4\",\"3.1\",\"2.6\",\"3.5\",\"4.7\",\"4.4\",\"2.4\",\"2.7\",\"1.7\",\"3.4\",\"3.2\",\"2.8\",\"2.8\",\"1.6\",\"2.9\",\"2.9\",\"2.4\",\"3.4\",\"3.0\",\"2.8\",\"2.3\",\"3.4\",\"3.3\",\"2.6\",\"2.5\",\"2.8\",\"2.8\",\"4.5\",\"4.9\",\"2.3\",\"2.1\",\"3.2\",\"2.2\",\"2.3\",\"2.0\",\"3.0\",\"3.0\",\"3.2\",\"3.4\",\"4.0\",\"4.8\",\"2.2\",\"3.2\",\"3.1\",\"3.4\",\"2.2\",\"2.6\",\"3.3\",\"2.1\",\"2.3\",\"3.9\",\"2.3\",\"2.1\",\"2.5\",\"2.1\",\"2.8\",\"3.3\",\"3.2\",\"3.4\",\"2.8\",\"3.5\",\"2.2\",\"4.9\",\"2.5\",\"2.2\",\"2.0\",\"2.3\",\"2.9\",\"3.4\",\"4.7\",\"2.8\",\"2.4\",\"1.6\",\"3.6\",\"2.2\",\"4.3\",\"2.4\",\"2.5\",\"2.7\",\"3.0\",\"3.6\",\"4.9\",\"4.7\",\"4.7\",\"2.3\",\"2.4\",\"2.9\",\"3.7\",\"2.6\",\"2.8\",\"3.3\",\"2.8\",\"3.1\",\"3.0\",\"2.9\",\"2.8\",\"2.3\",\"3.3\",\"3.6\",\"4.5\",\"4.5\",\"1.7\",\"2.8\",\"2.3\",\"2.8\",\"2.4\",\"3.8\",\"4.9\",\"1.6\",\"2.1\",\"3.2\",\"3.2\",\"3.8\",\"2.3\",\"1.7\",\"3.5\",\"3.7\",\"2.1\",\"3.3\",\"1.5\",\"3.1\",\"2.2\",\"3.8\",\"3.3\",\"4.0\",\"2.8\",\"2.6\",\"1.9\",\"2.3\",\"2.1\",\"4.6\",\"4.2\",\"1.7\",\"2.2\",\"3.3\",\"2.8\",\"3.4\",\"4.2\",\"2.2\",\"2.1\",\"3.0\",\"3.5\",\"2.2\",\"4.4\",\"4.1\",\"2.7\",\"2.6\",\"2.7\",\"2.5\",\"2.0\",\"4.1\",\"4.1\",\"2.2\",\"2.2\",\"2.8\",\"2.7\",\"2.3\",\"4.8\",\"2.6\",\"2.0\",\"3.0\",\"3.8\",\"3.8\",\"3.0\",\"4.7\",\"4.2\",\"4.3\",\"2.8\",\"2.1\",\"2.7\",\"3.2\",\"3.4\",\"1.6\",\"2.1\",\"2.4\",\"3.0\",\"2.5\",\"4.7\",\"5.0\",\"3.5\",\"1.7\",\"2.5\",\"3.8\",\"3.7\",\"3.7\",\"4.2\",\"2.1\",\"2.1\",\"2.9\",\"2.3\",\"2.6\",\"2.9\",\"3.3\",\"3.1\",\"3.1\",\"2.7\",\"1.7\",\"2.8\",\"1.6\",\"2.5\",\"3.7\",\"1.5\",\"2.3\",\"3.4\",\"2.5\",\"4.0\",\"1.6\",\"2.7\",\"1.7\",\"2.1\",\"2.6\",\"4.1\",\"3.0\",\"3.0\",\"2.3\",\"3.4\",\"2.9\",\"4.4\",\"4.5\",\"4.0\",\"2.8\",\"2.7\",\"2.9\",\"3.8\",\"3.5\",\"3.4\",\"2.9\",\"2.4\",\"3.0\",\"2.7\",\"3.0\",\"3.9\",\"4.1\",\"3.2\",\"2.1\",\"1.6\",\"3.3\",\"3.3\",\"2.2\",\"2.8\",\"2.7\",\"3.5\",\"2.3\",\"2.2\",\"3.4\",\"2.5\",\"3.7\",\"3.8\",\"4.0\",\"2.4\",\"3.5\",\"2.3\",\"3.4\",\"3.5\",\"3.1\",\"3.5\",\"2.0\",\"1.8\",\"3.8\",\"2.6\",\"4.1\",\"4.0\",\"2.1\",\"1.8\",\"2.4\",\"3.6\",\"3.0\",\"3.1\",\"2.3\",\"3.5\",\"2.3\",\"3.5\",\"2.6\",\"2.6\",\"2.0\",\"2.1\",\"3.8\",\"2.7\",\"3.5\",\"4.2\",\"1.7\",\"2.5\",\"1.5\",\"2.8\",\"2.0\",\"2.0\",\"2.0\",\"1.5\",\"4.0\",\"2.8\",\"4.8\",\"3.4\",\"2.0\",\"1.9\",\"2.9\",\"3.6\",\"2.8\",\"2.5\",\"3.1\",\"3.2\",\"3.5\",\"3.6\",\"4.8\",\"2.5\",\"3.0\",\"2.9\",\"3.6\",\"2.8\",\"2.7\",\"3.1\",\"3.2\",\"3.7\",\"3.0\",\"3.1\",\"2.8\",\"2.6\",\"3.0\",\"3.6\",\"2.6\",\"3.7\",\"1.6\",\"2.9\",\"1.7\",\"2.3\",\"2.4\",\"3.5\",\"3.1\",\"2.6\",\"2.0\",\"2.7\",\"3.9\",\"4.8\",\"2.5\",\"2.1\",\"2.5\",\"3.7\",\"2.7\",\"4.5\",\"4.8\",\"1.8\",\"2.9\",\"3.0\",\"2.4\",\"2.5\",\"4.9\",\"4.7\",\"4.4\",\"4.9\",\"3.0\",\"3.0\",\"1.9\",\"1.6\",\"2.0\",\"3.4\",\"3.6\",\"3.6\",\"4.6\",\"2.7\",\"3.1\",\"3.4\",\"3.9\",\"2.9\",\"4.7\",\"4.8\",\"4.4\",\"2.4\",\"3.2\",\"1.8\",\"3.0\",\"3.4\",\"3.3\",\"4.3\",\"3.3\",\"3.0\",\"2.3\",\"3.8\",\"2.0\",\"2.9\",\"1.8\",\"3.4\",\"3.9\",\"3.3\",\"3.1\",\"4.3\",\"3.0\",\"2.3\",\"2.8\",\"3.2\",\"2.6\",\"3.3\",\"4.9\",\"1.8\",\"3.3\",\"1.8\",\"2.8\",\"3.8\",\"3.0\",\"4.7\",\"4.5\",\"2.8\",\"2.5\",\"2.8\",\"3.2\",\"2.1\",\"3.4\",\"1.6\",\"3.0\",\"2.8\",\"2.0\",\"2.0\",\"3.1\",\"3.2\",\"2.6\",\"2.3\",\"1.6\",\"1.6\",\"3.9\",\"3.9\",\"4.8\",\"4.9\",\"2.5\",\"1.7\",\"2.2\",\"2.1\",\"2.9\",\"3.8\",\"2.0\",\"2.8\",\"2.6\",\"2.7\",\"3.4\",\"1.8\",\"2.4\",\"1.8\",\"2.8\",\"2.9\",\"3.6\",\"4.7\",\"2.0\",\"2.7\",\"2.2\",\"2.3\",\"3.2\",\"2.4\",\"2.2\",\"1.6\",\"2.2\",\"2.1\",\"2.5\",\"2.1\",\"1.6\",\"2.1\",\"3.0\",\"4.3\",\"2.5\",\"1.7\",\"2.8\",\"4.0\",\"3.1\",\"3.4\",\"4.6\",\"4.7\",\"2.8\",\"2.0\",\"2.0\",\"3.0\",\"3.8\",\"3.2\",\"3.3\",\"2.5\",\"3.2\",\"3.9\",\"3.5\",\"3.5\",\"3.2\",\"2.5\",\"1.8\",\"3.9\",\"3.9\",\"2.1\",\"2.6\",\"1.7\",\"3.2\",\"3.9\",\"3.3\",\"4.6\",\"2.8\",\"3.4\",\"2.6\",\"3.5\",\"2.1\",\"3.2\",\"4.7\",\"2.8\",\"2.0\",\"3.4\",\"2.2\",\"3.1\",\"4.5\",\"2.0\",\"1.6\",\"2.0\",\"3.5\",\"2.9\",\"3.4\",\"4.7\",\"2.1\",\"2.5\",\"2.9\",\"2.9\",\"2.2\",\"4.4\",\"1.8\",\"2.8\",\"2.8\",\"2.9\",\"2.2\",\"4.0\",\"4.9\",\"2.6\",\"3.0\",\"2.8\",\"2.5\",\"2.5\",\"1.9\",\"2.1\",\"1.9\",\"2.6\",\"2.6\",\"3.6\",\"3.4\",\"1.7\",\"2.6\",\"3.6\",\"3.7\",\"1.8\",\"3.4\",\"3.0\",\"3.9\",\"2.6\",\"3.4\",\"4.2\",\"1.7\",\"3.2\",\"2.8\",\"3.1\",\"2.9\",\"5.0\",\"3.6\",\"4.4\",\"1.6\",\"2.7\",\"1.6\",\"3.7\",\"3.7\",\"3.6\",\"4.3\",\"1.9\",\"2.3\",\"1.6\",\"2.3\",\"3.5\",\"1.7\",\"1.6\",\"2.5\",\"3.6\",\"2.2\",\"3.4\",\"3.1\",\"1.8\",\"2.3\",\"2.9\",\"3.5\",\"3.8\",\"3.2\",\"3.4\",\"3.5\",\"3.8\",\"3.1\",\"4.7\",\"4.3\",\"4.9\",\"4.5\",\"2.6\",\"2.6\",\"2.4\",\"3.1\",\"2.1\",\"2.3\",\"2.5\",\"3.4\",\"2.3\",\"3.1\",\"4.4\",\"1.7\",\"2.1\",\"3.0\",\"3.6\",\"2.2\",\"3.3\",\"4.3\",\"3.0\",\"3.2\",\"2.3\",\"3.2\",\"2.6\",\"3.4\",\"2.5\",\"2.1\",\"2.4\",\"2.7\",\"4.9\",\"4.7\",\"4.6\",\"4.1\",\"2.3\",\"2.4\",\"2.2\",\"3.2\",\"3.2\",\"3.4\",\"2.5\",\"3.1\",\"3.2\",\"5.0\",\"1.7\",\"3.0\",\"3.3\",\"2.1\",\"3.4\",\"3.1\",\"2.5\",\"1.8\",\"2.1\",\"3.6\",\"2.4\",\"3.0\",\"3.3\",\"4.7\",\"1.5\",\"2.9\",\"2.4\",\"2.7\",\"2.3\",\"3.1\",\"3.4\",\"1.6\",\"2.8\",\"3.5\",\"2.1\",\"1.6\",\"3.0\",\"1.7\",\"2.2\",\"3.1\",\"4.5\",\"4.8\",\"3.1\",\"2.7\",\"3.3\",\"3.8\",\"2.1\",\"2.4\",\"1.7\",\"1.5\",\"2.2\",\"3.0\",\"4.1\",\"4.3\",\"1.7\",\"2.7\",\"2.3\",\"3.3\",\"3.6\",\"4.7\",\"4.5\",\"2.6\",\"2.2\",\"2.6\",\"3.6\",\"3.4\",\"3.1\",\"4.8\",\"4.6\",\"2.1\",\"3.0\",\"2.4\",\"3.5\",\"2.3\",\"1.9\",\"3.0\",\"3.4\",\"2.4\",\"3.3\",\"2.3\",\"3.1\",\"3.9\",\"3.4\",\"3.2\",\"4.9\",\"3.2\",\"3.5\",\"2.4\",\"2.4\",\"3.4\",\"3.4\",\"3.2\",\"2.7\",\"2.8\",\"2.7\",\"4.1\",\"4.6\",\"2.2\",\"2.8\",\"1.8\",\"2.3\",\"2.9\",\"2.3\",\"3.1\",\"2.6\",\"2.4\",\"3.6\",\"4.2\",\"4.8\",\"2.5\",\"2.6\",\"1.7\",\"3.2\",\"2.7\",\"3.5\",\"4.1\",\"2.8\",\"3.0\",\"3.4\",\"3.4\",\"2.9\",\"3.2\",\"2.4\",\"1.8\",\"2.3\",\"3.4\",\"3.3\",\"2.4\",\"3.0\",\"2.8\",\"2.6\",\"4.5\",\"1.8\",\"1.9\",\"3.4\",\"3.0\",\"2.8\",\"3.4\",\"4.3\",\"2.2\",\"1.8\",\"1.8\",\"2.7\",\"2.8\",\"4.5\",\"4.1\",\"1.5\",\"2.3\",\"2.4\",\"2.6\",\"3.8\",\"3.3\",\"4.8\",\"4.9\",\"4.2\",\"2.6\",\"1.7\",\"3.0\",\"2.5\",\"2.1\",\"1.9\",\"2.0\",\"1.9\",\"2.9\",\"3.9\",\"3.9\",\"4.6\",\"3.0\",\"1.8\",\"1.8\",\"2.0\",\"2.8\",\"2.8\",\"1.5\",\"2.8\",\"2.6\",\"2.6\",\"4.3\",\"4.3\",\"4.0\",\"4.8\",\"2.5\",\"2.9\",\"3.0\",\"3.0\",\"2.8\",\"2.0\",\"3.4\",\"2.8\",\"3.3\",\"2.0\",\"1.8\",\"3.4\",\"2.8\",\"3.1\",\"3.7\",\"4.9\",\"4.7\",\"2.7\",\"2.4\",\"2.7\",\"3.1\",\"3.2\",\"3.9\",\"2.0\",\"3.3\",\"1.8\",\"2.4\",\"2.9\",\"2.5\",\"4.8\",\"4.1\",\"2.4\",\"2.6\",\"2.6\",\"3.0\",\"2.1\",\"2.0\",\"1.7\",\"2.5\",\"2.4\",\"2.7\",\"3.4\",\"4.5\",\"2.9\",\"2.9\",\"2.3\",\"3.1\",\"3.9\",\"3.4\",\"4.2\",\"1.5\",\"3.4\",\"2.2\",\"2.4\",\"3.5\",\"4.3\",\"4.8\",\"4.6\",\"1.8\",\"3.2\",\"2.2\",\"3.4\",\"2.9\",\"2.8\",\"3.1\",\"2.5\",\"3.9\",\"3.6\",\"4.7\",\"1.6\",\"1.6\",\"2.3\",\"2.5\",\"2.3\",\"4.5\",\"1.5\",\"2.7\",\"1.5\",\"3.8\",\"2.3\",\"3.5\",\"4.3\",\"1.9\",\"1.9\",\"3.4\",\"2.6\",\"2.2\",\"3.6\",\"4.1\",\"1.5\",\"2.7\",\"2.0\",\"3.6\",\"2.5\",\"3.4\",\"2.3\",\"2.2\",\"2.7\",\"2.7\",\"4.8\",\"3.2\",\"3.3\",\"3.2\",\"2.3\",\"3.0\",\"2.7\",\"1.9\",\"3.3\",\"3.8\",\"2.5\",\"4.0\",\"4.5\",\"3.1\",\"2.3\",\"1.8\",\"2.6\",\"3.4\",\"5.0\",\"3.3\",\"2.8\",\"1.7\",\"2.0\",\"3.3\",\"4.2\",\"1.7\",\"3.0\",\"2.7\",\"3.9\",\"2.9\",\"4.6\",\"2.4\",\"2.3\",\"3.2\",\"2.4\",\"2.2\",\"3.3\",\"4.1\",\"1.6\",\"1.8\",\"1.8\",\"2.3\",\"2.8\",\"2.9\",\"2.6\",\"1.7\",\"3.1\",\"2.5\",\"1.9\",\"1.7\",\"3.3\",\"2.6\",\"3.3\",\"3.5\",\"4.2\",\"2.1\",\"3.2\",\"2.9\",\"3.1\",\"2.9\",\"2.8\",\"2.0\",\"1.6\",\"2.2\",\"2.2\",\"3.2\",\"2.5\",\"3.1\",\"3.1\",\"3.8\",\"3.4\",\"3.8\",\"2.4\",\"3.2\",\"1.7\",\"4.0\",\"2.5\",\"4.6\",\"4.3\",\"4.9\",\"2.2\",\"2.4\",\"2.0\",\"3.1\",\"2.0\",\"2.1\",\"3.3\",\"3.4\",\"2.8\",\"2.7\",\"2.3\",\"3.3\",\"2.2\",\"2.8\",\"2.7\",\"2.8\",\"3.3\",\"3.1\",\"2.9\",\"2.9\",\"3.0\",\"3.5\",\"3.3\",\"4.7\",\"2.5\",\"3.4\",\"2.8\",\"3.8\",\"3.9\",\"3.5\",\"4.6\",\"2.8\",\"3.3\",\"3.3\",\"2.0\",\"4.0\",\"4.0\",\"4.2\",\"2.4\",\"2.9\",\"3.3\",\"2.7\",\"3.6\",\"3.3\",\"4.0\",\"2.8\",\"1.8\",\"3.5\",\"3.9\",\"2.6\",\"3.1\",\"2.8\",\"2.8\",\"2.6\",\"2.9\",\"4.6\",\"1.5\",\"1.6\",\"2.2\",\"3.7\",\"3.0\",\"3.2\",\"3.0\",\"1.8\",\"2.5\",\"4.0\",\"4.0\",\"4.6\",\"4.8\",\"4.0\",\"2.7\",\"3.5\",\"3.2\",\"3.1\",\"2.0\",\"2.0\",\"3.1\",\"2.6\",\"3.1\",\"2.4\",\"3.6\",\"4.6\",\"4.0\",\"2.1\",\"3.4\",\"3.4\",\"2.3\",\"2.7\",\"3.0\",\"4.4\",\"5.0\",\"2.1\",\"2.6\",\"2.5\",\"2.2\",\"2.6\",\"3.6\",\"3.3\",\"4.5\",\"3.4\",\"3.2\",\"2.2\",\"2.9\",\"3.1\",\"4.2\",\"2.3\",\"3.3\",\"3.0\",\"2.1\",\"3.2\",\"4.2\",\"4.2\",\"2.7\",\"3.1\",\"2.5\",\"3.2\",\"3.0\",\"3.5\",\"2.1\",\"1.8\",\"3.5\",\"3.0\",\"2.7\"]},\"selected\":{\"id\":\"1340\"},\"selection_policy\":{\"id\":\"1339\"}},\"id\":\"1180\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"tools\":[{\"id\":\"1252\"},{\"id\":\"1253\"},{\"id\":\"1254\"},{\"id\":\"1255\"},{\"id\":\"1256\"},{\"id\":\"1257\"}]},\"id\":\"1259\",\"type\":\"Toolbar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1183\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1182\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"days\",\"axis_label_standoff\":10,\"axis_label_text_color\":\"#E0E0E0\",\"axis_label_text_font\":\"Helvetica\",\"axis_label_text_font_size\":\"1.25em\",\"axis_label_text_font_style\":\"normal\",\"axis_line_alpha\":0,\"axis_line_color\":\"#E0E0E0\",\"coordinates\":null,\"formatter\":{\"id\":\"1314\"},\"group\":null,\"major_label_policy\":{\"id\":\"1315\"},\"major_label_text_color\":\"#E0E0E0\",\"major_label_text_font\":\"Helvetica\",\"major_label_text_font_size\":\"1.025em\",\"major_tick_line_alpha\":0,\"major_tick_line_color\":\"#E0E0E0\",\"minor_tick_line_alpha\":0,\"minor_tick_line_color\":\"#E0E0E0\",\"ticker\":{\"id\":\"1199\"}},\"id\":\"1198\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1107\",\"type\":\"BasicTicker\"},{\"attributes\":{\"data\":{\"x\":[0,2,4,6,8,10,11,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,6,8,10,12,14,16,18,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,11,12,13,15,16,17,18,19,0,2,4,6,8,10,11,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,16,17,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,7,9,11,13,15,16,17,18,19,20,21,22,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,7,9,11,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,7,9,11,13,15,17,19,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,0,3,5,7,9,11,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,20,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,20,0,3,5,7,9,11,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,6,8,10,12,14,16,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,7,9,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,6,8,10,12,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,0,2,4,6,8,10,12,5,7,9,11,13,15,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,9,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,3,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,0,2,4,6,8,10,11,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,7,9,11,13,15,17,19,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,6,8,10,12,14,16,18,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,3,5,7,9,11,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,0,2,4,6,8,10,11,12,0,2,4,6,8,0,3,5,7,9,10,11,12,13,14,15,0,2,4,6,8,5,7,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,0,2,4,6,8,10,0,2,4,6,8,10,8,10,12,14,16,18,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,5,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,6,8,10,12,14,16,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,11,12,13,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,5,7,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,7,9,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,17,0,2,4,6,8,5,7,9,11,13,15,0,2,4,6,8,0,2,4,7,9,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,6,8,10,12,14,16,18,19,20,21,22,23,24,25,26,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,9,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,6,8,10,12,14,16,0,2,4,6,8,0,2,4,6,8,0,2,4,6,9,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,11,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,16,18,20,0,2,4,6,8,10,5,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,11,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,9,0,2,4,6,8,10,0,2,4,7,9,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,9,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,0,2,4,7,9,11,0,2,5,7,9,11,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,7,9,11,13,15,17,19,6,8,10,12,14,16,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,6,8,10,12,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,5,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,10,12,5,7,9,11,13,15,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,7,9,11,13,15,17,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,5,7,9,11,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,5,7,9,11,13,15,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,7,9,11,13,15,17,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,17,19,20,21,22,23,24,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,6,8,10,12,14,16,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,3,5,7,9,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,6,8,10,12,14,16,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,17,0,2,4,6,8,10,11,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,5,7,9,11,13,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,5,7,9,11,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,7,9,11,13,15,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,3,5,7,9,11,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,6,8,10,12,14,16,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,17,0,3,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,3,5,7,9,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,3,5,7,9,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,12,0,3,5,7,9,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,7,9,11,13,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,7,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,17,19,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,12,5,7,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,20,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,7,9,11,13,15,17,19,0,2,4,6,8,10,12,7,9,11,13,15,0,2,4,6,9,11,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,7,9,11,13,15,17,19,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8],\"y\":[\"241.8\",\"233.7\",\"222.3\",\"229.0\",\"236.3\",\"319.1\",\"306.7\",\"278.3\",\"235.8\",\"208.1\",\"238.7\",\"225.1\",\"226.5\",\"346.3\",\"262.5\",\"241.1\",\"217.1\",\"247.4\",\"232.8\",\"229.7\",\"278.4\",\"329.7\",\"203.0\",\"246.3\",\"222.0\",\"236.3\",\"225.2\",\"340.3\",\"220.4\",\"201.0\",\"245.6\",\"247.5\",\"230.5\",\"267.1\",\"240.9\",\"202.3\",\"250.0\",\"231.0\",\"244.6\",\"288.2\",\"262.2\",\"230.9\",\"209.5\",\"236.0\",\"237.2\",\"249.7\",\"317.4\",\"266.3\",\"228.5\",\"234.7\",\"231.8\",\"245.2\",\"237.9\",\"303.9\",\"268.4\",\"214.8\",\"204.4\",\"207.8\",\"227.4\",\"248.8\",\"336.7\",\"268.1\",\"238.9\",\"221.9\",\"216.2\",\"228.9\",\"235.4\",\"223.8\",\"205.4\",\"220.4\",\"237.0\",\"226.3\",\"239.8\",\"233.0\",\"211.7\",\"230.3\",\"237.1\",\"346.4\",\"218.9\",\"205.0\",\"241.5\",\"227.6\",\"249.8\",\"236.2\",\"238.6\",\"213.2\",\"227.2\",\"241.1\",\"284.3\",\"324.6\",\"211.7\",\"231.8\",\"243.3\",\"239.6\",\"232.5\",\"335.9\",\"286.7\",\"228.2\",\"215.1\",\"217.5\",\"249.8\",\"235.2\",\"244.1\",\"212.1\",\"219.1\",\"243.5\",\"232.3\",\"210.6\",\"218.0\",\"232.7\",\"226.5\",\"248.2\",\"202.6\",\"222.7\",\"232.0\",\"225.7\",\"225.2\",\"317.2\",\"227.1\",\"239.9\",\"220.0\",\"244.5\",\"229.7\",\"245.0\",\"246.8\",\"203.1\",\"237.2\",\"245.5\",\"203.7\",\"200.3\",\"238.0\",\"249.6\",\"241.5\",\"324.5\",\"343.5\",\"262.6\",\"220.1\",\"214.2\",\"222.0\",\"248.5\",\"233.1\",\"239.9\",\"226.1\",\"207.8\",\"226.6\",\"227.4\",\"303.4\",\"343.1\",\"206.6\",\"236.8\",\"216.8\",\"236.8\",\"249.7\",\"333.8\",\"235.4\",\"231.9\",\"239.7\",\"241.2\",\"226.1\",\"313.0\",\"220.1\",\"207.0\",\"242.9\",\"234.5\",\"238.3\",\"218.9\",\"228.1\",\"220.6\",\"242.2\",\"245.5\",\"248.8\",\"236.2\",\"247.6\",\"236.6\",\"239.0\",\"329.0\",\"259.3\",\"215.7\",\"213.2\",\"228.8\",\"238.9\",\"245.3\",\"287.4\",\"326.2\",\"246.3\",\"218.9\",\"235.9\",\"236.7\",\"227.5\",\"262.4\",\"200.8\",\"226.8\",\"222.5\",\"238.0\",\"249.1\",\"282.4\",\"235.9\",\"216.3\",\"200.1\",\"243.7\",\"225.1\",\"324.0\",\"284.3\",\"243.0\",\"213.7\",\"208.5\",\"232.4\",\"226.3\",\"244.0\",\"210.3\",\"201.1\",\"229.7\",\"248.6\",\"268.2\",\"297.1\",\"204.6\",\"235.1\",\"221.6\",\"235.5\",\"229.9\",\"275.0\",\"207.0\",\"225.2\",\"221.9\",\"247.1\",\"232.8\",\"238.9\",\"219.8\",\"204.6\",\"229.2\",\"245.2\",\"326.5\",\"223.7\",\"242.6\",\"223.6\",\"248.8\",\"240.3\",\"224.7\",\"201.6\",\"225.3\",\"233.9\",\"241.8\",\"267.4\",\"298.8\",\"255.9\",\"313.1\",\"248.0\",\"260.6\",\"239.0\",\"187.4\",\"199.4\",\"230.7\",\"209.9\",\"239.5\",\"249.0\",\"235.3\",\"290.9\",\"302.0\",\"237.5\",\"234.6\",\"213.3\",\"231.2\",\"233.5\",\"286.0\",\"286.5\",\"205.3\",\"230.1\",\"248.1\",\"231.8\",\"249.5\",\"296.4\",\"302.5\",\"242.3\",\"206.2\",\"235.9\",\"249.1\",\"245.8\",\"288.6\",\"239.0\",\"209.3\",\"204.6\",\"246.8\",\"242.2\",\"250.1\",\"271.1\",\"239.9\",\"209.0\",\"242.3\",\"242.2\",\"233.1\",\"313.2\",\"225.8\",\"211.0\",\"211.8\",\"230.7\",\"243.3\",\"266.8\",\"213.9\",\"233.7\",\"206.2\",\"231.9\",\"235.5\",\"230.4\",\"220.3\",\"200.6\",\"236.2\",\"249.6\",\"223.6\",\"213.0\",\"248.2\",\"226.4\",\"246.7\",\"238.6\",\"231.0\",\"213.7\",\"241.9\",\"226.1\",\"270.3\",\"245.9\",\"241.1\",\"239.5\",\"226.5\",\"236.4\",\"226.5\",\"240.3\",\"242.8\",\"238.8\",\"225.1\",\"243.2\",\"228.6\",\"209.4\",\"235.3\",\"240.3\",\"249.5\",\"249.8\",\"223.1\",\"242.3\",\"240.8\",\"280.7\",\"299.6\",\"227.6\",\"209.5\",\"206.1\",\"244.8\",\"232.3\",\"270.8\",\"209.3\",\"247.5\",\"210.0\",\"239.7\",\"229.6\",\"295.9\",\"311.7\",\"270.8\",\"220.2\",\"215.8\",\"290.3\",\"193.5\",\"233.6\",\"202.6\",\"219.6\",\"233.0\",\"245.6\",\"233.6\",\"210.8\",\"230.1\",\"241.4\",\"246.3\",\"296.6\",\"237.5\",\"205.9\",\"235.5\",\"238.4\",\"243.7\",\"251.1\",\"217.6\",\"229.5\",\"223.1\",\"231.9\",\"227.4\",\"248.0\",\"241.5\",\"213.8\",\"241.2\",\"243.8\",\"257.4\",\"200.6\",\"227.3\",\"206.9\",\"237.8\",\"248.4\",\"328.1\",\"281.2\",\"219.6\",\"201.4\",\"232.7\",\"227.8\",\"239.9\",\"309.4\",\"261.0\",\"345.4\",\"262.4\",\"285.7\",\"232.1\",\"278.7\",\"191.2\",\"206.5\",\"243.3\",\"238.0\",\"248.8\",\"230.3\",\"324.5\",\"235.0\",\"230.4\",\"241.5\",\"240.1\",\"228.3\",\"309.8\",\"212.9\",\"222.5\",\"234.2\",\"249.4\",\"234.0\",\"281.8\",\"332.1\",\"225.0\",\"249.7\",\"223.4\",\"227.3\",\"230.6\",\"303.3\",\"321.1\",\"278.4\",\"313.9\",\"288.9\",\"223.2\",\"285.8\",\"207.7\",\"249.1\",\"229.8\",\"239.1\",\"230.5\",\"304.6\",\"208.2\",\"208.4\",\"231.3\",\"242.0\",\"225.9\",\"330.5\",\"202.7\",\"216.5\",\"247.7\",\"234.8\",\"227.2\",\"245.1\",\"231.8\",\"213.1\",\"235.7\",\"228.3\",\"302.6\",\"218.0\",\"232.9\",\"205.0\",\"229.5\",\"237.5\",\"231.8\",\"220.5\",\"245.3\",\"236.1\",\"247.5\",\"229.2\",\"205.5\",\"242.4\",\"242.5\",\"240.2\",\"222.4\",\"239.2\",\"237.6\",\"244.7\",\"234.6\",\"255.3\",\"224.7\",\"235.5\",\"202.1\",\"237.3\",\"232.1\",\"274.4\",\"342.5\",\"238.3\",\"247.9\",\"219.6\",\"229.6\",\"227.1\",\"250.5\",\"331.6\",\"205.4\",\"216.5\",\"213.4\",\"237.1\",\"233.2\",\"308.1\",\"253.0\",\"273.1\",\"328.4\",\"253.4\",\"210.6\",\"266.7\",\"242.9\",\"249.2\",\"235.4\",\"230.9\",\"241.8\",\"303.4\",\"297.9\",\"257.3\",\"294.7\",\"229.8\",\"232.2\",\"249.2\",\"233.5\",\"241.8\",\"229.8\",\"229.8\",\"235.7\",\"226.6\",\"240.1\",\"239.9\",\"217.5\",\"250.0\",\"232.5\",\"229.7\",\"304.2\",\"336.3\",\"207.6\",\"223.3\",\"223.2\",\"247.2\",\"234.1\",\"244.9\",\"232.2\",\"207.8\",\"241.4\",\"247.4\",\"274.8\",\"213.9\",\"203.3\",\"225.8\",\"231.6\",\"241.0\",\"289.5\",\"205.7\",\"207.2\",\"229.4\",\"231.9\",\"234.7\",\"245.1\",\"246.8\",\"200.2\",\"249.4\",\"228.6\",\"317.7\",\"212.7\",\"214.7\",\"235.4\",\"233.0\",\"227.3\",\"241.1\",\"241.7\",\"214.7\",\"241.1\",\"234.5\",\"220.2\",\"242.6\",\"201.6\",\"233.2\",\"249.7\",\"202.8\",\"204.3\",\"216.6\",\"232.3\",\"239.4\",\"348.7\",\"348.0\",\"269.1\",\"221.4\",\"287.3\",\"214.9\",\"219.5\",\"188.2\",\"196.0\",\"214.3\",\"249.0\",\"200.7\",\"241.4\",\"239.9\",\"258.2\",\"301.5\",\"308.7\",\"280.3\",\"298.5\",\"225.7\",\"238.2\",\"203.9\",\"220.1\",\"227.2\",\"225.6\",\"265.2\",\"282.7\",\"241.6\",\"238.8\",\"230.1\",\"233.4\",\"232.4\",\"214.2\",\"200.4\",\"213.9\",\"244.0\",\"225.6\",\"288.3\",\"300.7\",\"249.2\",\"232.0\",\"210.2\",\"238.4\",\"249.9\",\"239.3\",\"206.6\",\"235.8\",\"226.1\",\"248.6\",\"217.3\",\"213.0\",\"200.9\",\"227.9\",\"249.7\",\"242.1\",\"219.0\",\"243.9\",\"246.1\",\"240.5\",\"262.2\",\"275.1\",\"223.0\",\"238.3\",\"242.0\",\"244.4\",\"229.5\",\"283.1\",\"285.5\",\"235.5\",\"240.4\",\"249.9\",\"236.2\",\"236.7\",\"265.6\",\"264.9\",\"225.4\",\"211.7\",\"230.7\",\"236.1\",\"247.7\",\"331.8\",\"259.0\",\"210.9\",\"223.3\",\"233.8\",\"238.1\",\"229.1\",\"207.0\",\"242.6\",\"209.1\",\"233.5\",\"242.0\",\"319.3\",\"245.2\",\"224.7\",\"231.1\",\"232.6\",\"236.1\",\"242.5\",\"233.8\",\"247.8\",\"246.6\",\"236.4\",\"340.6\",\"249.8\",\"231.0\",\"244.3\",\"242.8\",\"226.1\",\"257.6\",\"318.4\",\"200.1\",\"204.3\",\"225.3\",\"230.0\",\"244.0\",\"278.0\",\"202.7\",\"210.2\",\"223.5\",\"246.7\",\"248.8\",\"218.4\",\"211.0\",\"226.9\",\"239.2\",\"230.6\",\"227.4\",\"207.6\",\"234.5\",\"244.8\",\"232.1\",\"263.7\",\"319.9\",\"221.1\",\"240.7\",\"213.5\",\"239.1\",\"229.9\",\"275.9\",\"316.5\",\"207.3\",\"219.2\",\"203.4\",\"228.8\",\"240.8\",\"277.5\",\"251.5\",\"290.7\",\"205.6\",\"241.9\",\"200.4\",\"243.6\",\"249.9\",\"305.5\",\"337.6\",\"230.0\",\"232.2\",\"241.5\",\"247.7\",\"231.7\",\"284.2\",\"310.0\",\"228.0\",\"211.5\",\"242.8\",\"240.8\",\"248.7\",\"265.7\",\"308.7\",\"207.1\",\"223.4\",\"217.4\",\"230.4\",\"241.7\",\"324.5\",\"297.7\",\"275.9\",\"238.7\",\"263.1\",\"240.8\",\"227.1\",\"232.8\",\"238.6\",\"233.3\",\"311.3\",\"253.7\",\"282.8\",\"272.7\",\"232.0\",\"201.1\",\"231.5\",\"228.4\",\"235.3\",\"263.2\",\"256.4\",\"346.2\",\"348.0\",\"271.4\",\"293.3\",\"268.5\",\"222.3\",\"249.7\",\"219.0\",\"229.7\",\"231.6\",\"345.6\",\"227.5\",\"213.6\",\"233.4\",\"247.0\",\"239.5\",\"275.3\",\"264.0\",\"200.6\",\"203.5\",\"227.1\",\"237.5\",\"231.5\",\"228.1\",\"219.9\",\"238.4\",\"245.7\",\"226.2\",\"268.8\",\"329.8\",\"242.8\",\"236.1\",\"205.1\",\"225.5\",\"245.7\",\"336.3\",\"246.9\",\"238.9\",\"226.3\",\"237.1\",\"241.5\",\"249.5\",\"228.0\",\"203.8\",\"236.7\",\"248.5\",\"210.9\",\"200.2\",\"219.3\",\"243.5\",\"235.8\",\"289.5\",\"256.0\",\"211.6\",\"221.9\",\"221.1\",\"235.4\",\"240.6\",\"293.6\",\"286.0\",\"251.6\",\"314.7\",\"257.3\",\"274.6\",\"224.2\",\"243.1\",\"208.7\",\"239.4\",\"241.4\",\"348.3\",\"226.0\",\"204.6\",\"226.0\",\"227.1\",\"238.2\",\"342.2\",\"283.1\",\"217.0\",\"234.5\",\"249.0\",\"237.9\",\"244.5\",\"327.5\",\"348.3\",\"207.3\",\"212.0\",\"235.8\",\"242.0\",\"227.9\",\"303.7\",\"317.0\",\"332.8\",\"222.0\",\"209.6\",\"208.0\",\"239.3\",\"232.4\",\"207.3\",\"245.8\",\"215.1\",\"239.5\",\"236.7\",\"330.1\",\"203.8\",\"236.5\",\"231.5\",\"240.3\",\"249.9\",\"293.3\",\"337.7\",\"235.1\",\"242.3\",\"245.7\",\"230.3\",\"227.0\",\"225.8\",\"201.0\",\"233.1\",\"241.8\",\"237.0\",\"232.7\",\"239.5\",\"232.1\",\"241.7\",\"229.9\",\"314.4\",\"247.1\",\"214.0\",\"205.4\",\"241.3\",\"243.9\",\"258.0\",\"214.5\",\"220.7\",\"201.1\",\"234.1\",\"246.8\",\"235.2\",\"245.1\",\"232.4\",\"239.0\",\"228.0\",\"247.6\",\"235.9\",\"217.2\",\"246.4\",\"236.7\",\"296.3\",\"323.8\",\"346.6\",\"285.2\",\"270.2\",\"244.3\",\"181.4\",\"220.7\",\"204.1\",\"227.0\",\"241.8\",\"232.0\",\"324.3\",\"338.1\",\"234.9\",\"230.3\",\"212.7\",\"234.0\",\"246.4\",\"251.8\",\"206.6\",\"214.4\",\"240.3\",\"241.7\",\"248.4\",\"251.3\",\"339.4\",\"220.9\",\"221.3\",\"215.1\",\"246.2\",\"234.4\",\"341.1\",\"207.1\",\"242.6\",\"214.9\",\"230.4\",\"249.1\",\"209.6\",\"201.2\",\"247.3\",\"247.9\",\"232.5\",\"333.3\",\"225.0\",\"239.5\",\"213.9\",\"237.3\",\"233.8\",\"220.9\",\"241.9\",\"232.6\",\"228.9\",\"230.3\",\"331.7\",\"221.5\",\"219.7\",\"219.0\",\"237.6\",\"246.9\",\"228.1\",\"216.4\",\"231.3\",\"248.0\",\"246.8\",\"230.8\",\"230.2\",\"210.8\",\"238.5\",\"242.0\",\"297.8\",\"269.4\",\"236.4\",\"228.6\",\"202.8\",\"233.7\",\"244.0\",\"314.6\",\"333.0\",\"244.0\",\"237.7\",\"219.2\",\"233.5\",\"231.1\",\"222.5\",\"239.9\",\"246.8\",\"242.0\",\"226.0\",\"245.2\",\"207.5\",\"225.0\",\"246.5\",\"234.7\",\"203.8\",\"217.4\",\"214.8\",\"246.0\",\"240.3\",\"213.5\",\"223.1\",\"236.9\",\"236.4\",\"246.0\",\"345.2\",\"230.8\",\"239.8\",\"233.4\",\"225.1\",\"236.9\",\"285.4\",\"309.3\",\"226.7\",\"224.4\",\"209.7\",\"234.2\",\"244.9\",\"268.3\",\"311.3\",\"247.1\",\"222.8\",\"249.6\",\"245.5\",\"236.2\",\"234.6\",\"210.9\",\"229.6\",\"233.2\",\"225.5\",\"245.5\",\"235.7\",\"213.8\",\"244.0\",\"229.7\",\"235.7\",\"211.0\",\"229.8\",\"234.8\",\"238.4\",\"239.5\",\"220.8\",\"242.0\",\"245.3\",\"238.3\",\"313.5\",\"268.1\",\"222.7\",\"224.1\",\"223.4\",\"234.3\",\"238.7\",\"228.3\",\"231.5\",\"206.5\",\"249.2\",\"234.0\",\"333.9\",\"282.7\",\"238.7\",\"241.7\",\"228.0\",\"250.0\",\"247.6\",\"214.1\",\"242.1\",\"204.0\",\"231.7\",\"227.3\",\"297.1\",\"295.7\",\"223.7\",\"246.3\",\"236.8\",\"235.0\",\"244.7\",\"257.9\",\"263.5\",\"280.7\",\"208.9\",\"218.8\",\"262.8\",\"199.2\",\"187.4\",\"210.1\",\"211.8\",\"206.4\",\"236.2\",\"224.9\",\"234.0\",\"249.6\",\"349.7\",\"214.4\",\"201.4\",\"241.2\",\"243.9\",\"232.2\",\"223.4\",\"224.9\",\"205.9\",\"230.3\",\"247.3\",\"295.3\",\"300.0\",\"218.5\",\"239.1\",\"200.1\",\"246.6\",\"249.5\",\"276.8\",\"346.2\",\"203.5\",\"234.8\",\"221.5\",\"233.3\",\"249.8\",\"311.6\",\"249.3\",\"232.7\",\"230.5\",\"231.2\",\"243.3\",\"297.3\",\"293.8\",\"301.3\",\"334.8\",\"266.9\",\"200.2\",\"229.0\",\"248.7\",\"240.8\",\"244.0\",\"253.2\",\"345.8\",\"239.9\",\"217.7\",\"222.7\",\"225.7\",\"249.8\",\"330.7\",\"204.1\",\"226.2\",\"230.9\",\"227.9\",\"228.6\",\"343.7\",\"288.0\",\"248.5\",\"217.3\",\"244.2\",\"235.2\",\"238.5\",\"327.8\",\"233.5\",\"212.6\",\"228.2\",\"249.3\",\"228.5\",\"244.8\",\"210.8\",\"227.5\",\"236.9\",\"233.3\",\"264.9\",\"287.4\",\"211.8\",\"206.7\",\"228.0\",\"231.0\",\"236.3\",\"322.6\",\"327.8\",\"260.2\",\"205.5\",\"216.3\",\"211.7\",\"205.1\",\"248.6\",\"207.7\",\"246.0\",\"245.9\",\"236.9\",\"340.9\",\"312.6\",\"233.0\",\"209.9\",\"209.0\",\"239.8\",\"241.0\",\"206.3\",\"234.2\",\"229.4\",\"225.9\",\"237.4\",\"272.0\",\"231.5\",\"205.3\",\"248.6\",\"235.6\",\"246.1\",\"210.6\",\"216.0\",\"215.8\",\"233.0\",\"249.5\",\"313.4\",\"264.1\",\"212.2\",\"220.1\",\"204.6\",\"232.2\",\"244.0\",\"277.5\",\"244.5\",\"222.7\",\"227.4\",\"239.2\",\"237.9\",\"262.7\",\"208.2\",\"243.9\",\"242.4\",\"232.4\",\"239.9\",\"305.4\",\"320.8\",\"201.6\",\"209.7\",\"228.3\",\"245.0\",\"226.4\",\"330.6\",\"249.9\",\"239.6\",\"225.3\",\"231.3\",\"229.3\",\"238.8\",\"212.4\",\"216.9\",\"233.9\",\"242.6\",\"322.7\",\"247.6\",\"241.5\",\"205.5\",\"228.5\",\"243.7\",\"231.7\",\"211.1\",\"203.3\",\"238.9\",\"238.4\",\"335.0\",\"226.5\",\"209.5\",\"209.7\",\"234.8\",\"230.2\",\"201.0\",\"238.0\",\"240.6\",\"227.6\",\"239.8\",\"256.3\",\"237.3\",\"210.9\",\"240.8\",\"232.9\",\"245.3\",\"253.9\",\"346.9\",\"238.5\",\"231.5\",\"205.5\",\"243.7\",\"228.4\",\"278.9\",\"200.7\",\"241.8\",\"207.2\",\"225.7\",\"240.7\",\"301.0\",\"203.7\",\"236.4\",\"249.8\",\"229.8\",\"236.8\",\"282.5\",\"217.0\",\"224.5\",\"241.2\",\"242.4\",\"242.6\",\"282.6\",\"206.2\",\"247.4\",\"238.0\",\"244.3\",\"230.3\",\"203.9\",\"221.7\",\"229.3\",\"246.9\",\"243.0\",\"224.7\",\"244.1\",\"200.7\",\"244.4\",\"237.7\",\"286.0\",\"261.1\",\"247.8\",\"213.4\",\"230.3\",\"234.4\",\"244.9\",\"312.9\",\"273.4\",\"237.7\",\"245.9\",\"238.7\",\"225.9\",\"246.2\",\"319.0\",\"338.4\",\"307.8\",\"329.4\",\"334.7\",\"245.4\",\"250.5\",\"241.3\",\"223.2\",\"225.4\",\"249.9\",\"247.3\",\"233.0\",\"215.8\",\"209.8\",\"241.5\",\"226.9\",\"345.5\",\"210.2\",\"231.4\",\"242.8\",\"231.3\",\"232.5\",\"289.3\",\"224.2\",\"240.1\",\"216.9\",\"226.1\",\"237.6\",\"291.8\",\"208.3\",\"232.4\",\"233.7\",\"241.0\",\"244.2\",\"316.2\",\"293.6\",\"229.9\",\"212.1\",\"243.6\",\"235.6\",\"239.8\",\"200.4\",\"244.9\",\"204.3\",\"237.3\",\"238.1\",\"337.9\",\"233.8\",\"248.9\",\"209.0\",\"243.7\",\"244.0\",\"318.0\",\"330.7\",\"220.7\",\"241.1\",\"246.5\",\"242.4\",\"233.6\",\"207.9\",\"214.2\",\"237.5\",\"239.9\",\"225.8\",\"258.9\",\"219.0\",\"214.6\",\"229.0\",\"236.6\",\"234.3\",\"230.5\",\"212.5\",\"216.4\",\"238.4\",\"239.9\",\"328.5\",\"307.0\",\"228.1\",\"247.5\",\"218.9\",\"242.5\",\"241.2\",\"209.9\",\"249.3\",\"229.8\",\"231.9\",\"245.0\",\"234.3\",\"234.1\",\"225.9\",\"235.2\",\"237.6\",\"211.6\",\"220.4\",\"224.8\",\"235.0\",\"240.3\",\"300.8\",\"348.9\",\"217.2\",\"212.7\",\"213.3\",\"243.5\",\"229.3\",\"333.6\",\"201.3\",\"233.5\",\"218.6\",\"227.7\",\"225.1\",\"247.0\",\"202.4\",\"201.2\",\"248.6\",\"227.6\",\"333.8\",\"322.7\",\"225.4\",\"225.9\",\"201.1\",\"239.6\",\"242.8\",\"343.8\",\"298.0\",\"247.5\",\"227.5\",\"243.5\",\"245.1\",\"235.4\",\"279.3\",\"327.6\",\"244.1\",\"207.2\",\"200.1\",\"250.0\",\"239.8\",\"207.5\",\"229.0\",\"207.5\",\"248.5\",\"227.5\",\"228.2\",\"206.6\",\"212.3\",\"236.4\",\"232.9\",\"322.9\",\"228.6\",\"223.3\",\"200.8\",\"225.3\",\"232.9\",\"243.8\",\"233.5\",\"213.9\",\"236.9\",\"246.2\",\"293.4\",\"329.8\",\"208.7\",\"235.7\",\"201.0\",\"241.3\",\"247.1\",\"309.9\",\"330.3\",\"228.0\",\"229.6\",\"233.1\",\"227.3\",\"240.1\",\"348.2\",\"266.6\",\"245.0\",\"222.8\",\"223.6\",\"242.8\",\"228.4\",\"337.1\",\"330.1\",\"219.2\",\"217.6\",\"229.6\",\"232.7\",\"246.2\",\"333.2\",\"245.8\",\"240.1\",\"245.1\",\"241.4\",\"236.6\",\"307.4\",\"292.6\",\"299.1\",\"225.8\",\"223.9\",\"226.3\",\"225.9\",\"241.2\",\"212.6\",\"236.3\",\"230.5\",\"244.1\",\"202.8\",\"235.9\",\"237.7\",\"225.8\",\"308.7\",\"303.1\",\"224.3\",\"245.6\",\"221.2\",\"240.3\",\"230.5\",\"200.6\",\"210.5\",\"247.4\",\"232.9\",\"227.5\",\"316.6\",\"344.6\",\"202.5\",\"210.2\",\"244.6\",\"246.2\",\"230.2\",\"285.9\",\"269.7\",\"204.5\",\"223.9\",\"213.1\",\"233.6\",\"249.5\",\"326.6\",\"337.7\",\"203.5\",\"241.6\",\"222.4\",\"241.7\",\"234.0\",\"326.7\",\"326.1\",\"246.7\",\"224.7\",\"228.3\",\"243.3\",\"227.0\",\"300.7\",\"220.7\",\"223.9\",\"201.3\",\"227.0\",\"229.7\",\"258.9\",\"297.2\",\"206.7\",\"246.7\",\"224.9\",\"244.1\",\"234.4\",\"267.9\",\"297.6\",\"248.2\",\"220.4\",\"225.8\",\"232.5\",\"237.6\",\"296.3\",\"291.5\",\"210.6\",\"206.7\",\"214.6\",\"240.3\",\"231.9\",\"242.4\",\"202.7\",\"200.1\",\"243.9\",\"225.9\",\"331.1\",\"238.6\",\"225.4\",\"230.6\",\"231.9\",\"225.1\",\"207.5\",\"237.2\",\"211.0\",\"239.5\",\"238.3\",\"239.9\",\"234.9\",\"243.3\",\"249.1\",\"235.2\",\"226.8\",\"217.6\",\"246.8\",\"231.1\",\"241.4\",\"312.5\",\"272.5\",\"346.2\",\"307.7\",\"315.2\",\"291.0\",\"247.5\",\"234.9\",\"232.6\",\"243.5\",\"229.9\",\"274.4\",\"200.1\",\"236.6\",\"220.2\",\"244.5\",\"243.0\",\"347.7\",\"347.2\",\"338.7\",\"247.6\",\"206.0\",\"270.0\",\"195.2\",\"188.1\",\"184.3\",\"219.3\",\"237.6\",\"204.1\",\"248.3\",\"228.0\",\"248.4\",\"312.4\",\"239.1\",\"235.2\",\"227.3\",\"249.7\",\"246.6\",\"237.2\",\"238.6\",\"234.9\",\"234.9\",\"226.7\",\"206.0\",\"240.1\",\"240.2\",\"249.4\",\"247.2\",\"263.8\",\"215.2\",\"213.2\",\"207.9\",\"229.6\",\"247.7\",\"262.9\",\"307.0\",\"236.8\",\"228.8\",\"206.9\",\"233.1\",\"237.5\",\"339.3\",\"227.2\",\"219.9\",\"214.2\",\"230.4\",\"225.9\",\"322.9\",\"213.4\",\"209.7\",\"249.5\",\"231.7\",\"245.2\",\"273.8\",\"228.8\",\"217.9\",\"217.3\",\"239.1\",\"242.6\",\"234.3\",\"217.1\",\"237.2\",\"247.7\",\"239.3\",\"238.4\",\"225.7\",\"216.5\",\"226.1\",\"244.3\",\"291.3\",\"253.7\",\"215.0\",\"238.2\",\"243.5\",\"245.8\",\"240.1\",\"328.0\",\"209.4\",\"241.3\",\"242.7\",\"242.5\",\"247.7\",\"341.3\",\"250.8\",\"249.9\",\"235.5\",\"203.9\",\"241.1\",\"238.1\",\"251.4\",\"248.7\",\"208.7\",\"234.7\",\"238.4\",\"244.2\",\"347.6\",\"343.4\",\"243.3\",\"201.1\",\"226.2\",\"244.0\",\"249.7\",\"260.4\",\"202.4\",\"224.2\",\"228.7\",\"239.4\",\"227.8\",\"301.0\",\"300.6\",\"242.0\",\"235.9\",\"219.9\",\"226.3\",\"226.2\",\"272.4\",\"337.0\",\"224.9\",\"240.2\",\"209.0\",\"240.5\",\"228.8\",\"269.6\",\"289.6\",\"244.3\",\"215.0\",\"217.9\",\"229.7\",\"236.9\",\"301.6\",\"270.1\",\"210.2\",\"248.9\",\"215.7\",\"239.7\",\"234.4\",\"311.0\",\"218.6\",\"201.3\",\"234.5\",\"229.2\",\"249.4\",\"331.5\",\"218.3\",\"210.3\",\"229.4\",\"247.7\",\"229.9\",\"342.4\",\"301.1\",\"266.6\",\"312.7\",\"306.9\",\"289.5\",\"293.1\",\"218.3\",\"237.3\",\"237.0\",\"228.1\",\"226.5\",\"334.6\",\"311.2\",\"243.4\",\"221.5\",\"200.4\",\"244.0\",\"229.4\",\"310.9\",\"225.8\",\"230.6\",\"240.4\",\"233.6\",\"247.5\",\"331.0\",\"234.4\",\"221.2\",\"210.0\",\"230.9\",\"239.5\",\"275.1\",\"336.1\",\"231.8\",\"206.1\",\"204.5\",\"244.2\",\"238.6\",\"334.6\",\"217.2\",\"211.3\",\"222.3\",\"233.8\",\"228.3\",\"268.2\",\"262.9\",\"221.5\",\"210.2\",\"238.3\",\"234.2\",\"247.3\",\"325.2\",\"261.2\",\"231.0\",\"213.8\",\"239.4\",\"226.4\",\"242.7\",\"347.3\",\"310.5\",\"211.1\",\"231.3\",\"244.4\",\"244.7\",\"238.4\",\"298.1\",\"312.4\",\"211.3\",\"224.6\",\"206.5\",\"239.4\",\"249.9\",\"298.6\",\"237.9\",\"215.8\",\"249.6\",\"241.6\",\"238.0\",\"284.1\",\"295.6\",\"271.6\",\"242.7\",\"243.3\",\"243.0\",\"234.3\",\"230.8\",\"345.5\",\"298.5\",\"246.3\",\"222.3\",\"231.0\",\"227.7\",\"247.6\",\"204.3\",\"242.3\",\"203.3\",\"230.0\",\"245.6\",\"309.5\",\"206.5\",\"208.8\",\"237.0\",\"239.1\",\"237.1\",\"323.8\",\"293.7\",\"223.5\",\"242.3\",\"218.9\",\"233.9\",\"236.7\",\"300.6\",\"221.0\",\"222.3\",\"241.5\",\"240.6\",\"239.7\",\"282.0\",\"221.6\",\"235.3\",\"240.0\",\"239.7\",\"233.4\",\"275.9\",\"346.3\",\"203.5\",\"217.3\",\"206.2\",\"245.4\",\"237.2\",\"212.0\",\"217.0\",\"227.2\",\"235.9\",\"238.8\",\"315.9\",\"303.4\",\"234.5\",\"229.2\",\"232.2\",\"246.0\",\"248.0\",\"301.4\",\"309.8\",\"223.5\",\"231.1\",\"246.8\",\"229.1\",\"236.8\",\"294.8\",\"275.7\",\"265.2\",\"337.9\",\"203.6\",\"210.2\",\"243.8\",\"244.5\",\"247.2\",\"287.0\",\"218.8\",\"209.5\",\"230.5\",\"239.8\",\"241.6\",\"334.5\",\"296.3\",\"230.8\",\"212.5\",\"212.1\",\"238.9\",\"242.5\",\"225.4\",\"226.8\",\"223.4\",\"229.2\",\"250.0\",\"316.1\",\"210.2\",\"224.3\",\"206.3\",\"236.4\",\"236.3\",\"341.9\",\"229.6\",\"214.0\",\"202.5\",\"229.8\",\"247.1\",\"268.0\",\"343.5\",\"227.3\",\"223.3\",\"210.9\",\"226.7\",\"236.4\",\"296.8\",\"336.0\",\"275.9\",\"287.5\",\"216.9\",\"238.5\",\"223.1\",\"249.6\",\"208.7\",\"239.1\",\"248.4\",\"326.2\",\"342.6\",\"219.7\",\"213.2\",\"207.5\",\"239.7\",\"234.4\",\"213.1\",\"221.2\",\"211.2\",\"241.7\",\"245.9\",\"280.3\",\"319.0\",\"329.6\",\"242.7\",\"200.6\",\"272.2\",\"199.0\",\"193.4\",\"204.3\",\"207.7\",\"213.7\",\"201.4\",\"244.7\",\"229.7\",\"200.3\",\"242.6\",\"235.6\",\"232.3\",\"231.7\",\"283.1\",\"271.0\",\"268.9\",\"339.8\",\"289.3\",\"299.1\",\"256.6\",\"245.8\",\"210.2\",\"229.6\",\"233.8\",\"240.6\",\"294.2\",\"306.8\",\"234.1\",\"213.0\",\"207.5\",\"247.3\",\"239.2\",\"210.0\",\"208.6\",\"237.1\",\"228.6\",\"238.3\",\"304.0\",\"318.9\",\"220.9\",\"214.7\",\"244.3\",\"241.8\",\"243.9\",\"277.3\",\"332.1\",\"205.9\",\"227.1\",\"225.0\",\"240.4\",\"228.2\",\"319.3\",\"324.1\",\"200.5\",\"232.2\",\"211.5\",\"247.5\",\"242.8\",\"218.1\",\"218.0\",\"206.7\",\"242.0\",\"244.1\",\"306.6\",\"201.4\",\"219.3\",\"214.6\",\"238.1\",\"247.7\",\"302.3\",\"283.4\",\"233.8\",\"245.1\",\"230.5\",\"245.4\",\"232.8\",\"310.6\",\"282.1\",\"213.5\",\"245.7\",\"209.5\",\"246.0\",\"237.5\",\"279.4\",\"327.8\",\"242.0\",\"227.9\",\"238.0\",\"227.6\",\"238.5\",\"242.2\",\"210.7\",\"233.4\",\"241.0\",\"231.5\",\"212.1\",\"209.8\",\"223.8\",\"243.6\",\"237.5\",\"314.2\",\"312.7\",\"204.8\",\"240.8\",\"201.2\",\"230.5\",\"237.1\",\"264.9\",\"239.0\",\"205.2\",\"236.3\",\"242.2\",\"246.0\",\"263.7\",\"295.9\",\"247.4\",\"237.9\",\"249.8\",\"247.5\",\"235.8\",\"226.4\",\"212.9\",\"226.0\",\"240.6\",\"237.4\",\"251.4\",\"310.5\",\"211.6\",\"222.7\",\"229.3\",\"235.6\",\"226.4\",\"228.8\",\"209.3\",\"220.5\",\"234.1\",\"240.8\",\"286.3\",\"305.3\",\"203.3\",\"234.1\",\"238.3\",\"226.8\",\"237.3\",\"218.9\",\"241.9\",\"230.0\",\"233.7\",\"237.6\",\"289.7\",\"230.2\",\"210.4\",\"235.9\",\"238.6\",\"227.2\",\"237.2\",\"241.1\",\"220.5\",\"242.3\",\"249.5\",\"231.9\",\"215.5\",\"221.6\",\"239.1\",\"247.5\",\"285.5\",\"236.2\",\"247.6\",\"248.8\",\"243.0\",\"228.7\",\"343.3\",\"248.7\",\"224.9\",\"217.6\",\"233.5\",\"229.9\",\"306.8\",\"300.0\",\"262.2\",\"313.1\",\"260.2\",\"286.2\",\"201.0\",\"200.4\",\"210.5\",\"204.7\",\"232.4\",\"239.7\",\"282.7\",\"291.6\",\"335.2\",\"349.4\",\"348.4\",\"224.5\",\"235.8\",\"231.1\",\"237.5\",\"235.0\",\"217.0\",\"225.9\",\"237.6\",\"233.5\",\"236.1\",\"272.7\",\"286.1\",\"219.2\",\"245.7\",\"212.3\",\"225.2\",\"236.7\",\"246.0\",\"213.8\",\"235.5\",\"243.1\",\"239.8\",\"247.3\",\"215.3\",\"228.2\",\"246.2\",\"245.7\",\"284.5\",\"201.7\",\"205.8\",\"203.6\",\"244.7\",\"235.5\",\"278.9\",\"311.4\",\"227.7\",\"235.9\",\"240.2\",\"231.8\",\"245.2\",\"336.8\",\"246.2\",\"219.1\",\"249.7\",\"236.9\",\"226.0\",\"324.3\",\"220.6\",\"200.5\",\"229.1\",\"225.5\",\"225.8\",\"288.4\",\"334.2\",\"234.7\",\"229.1\",\"210.2\",\"249.9\",\"226.4\",\"259.9\",\"235.8\",\"203.9\",\"226.5\",\"240.6\",\"239.9\",\"258.2\",\"218.8\",\"204.7\",\"206.4\",\"246.3\",\"243.9\",\"348.5\",\"344.4\",\"219.0\",\"207.2\",\"234.0\",\"249.5\",\"238.2\",\"308.1\",\"235.9\",\"217.7\",\"214.5\",\"229.7\",\"239.2\",\"214.3\",\"220.5\",\"219.8\",\"227.6\",\"249.5\",\"214.8\",\"243.3\",\"202.7\",\"226.3\",\"233.3\",\"204.9\",\"208.5\",\"234.1\",\"227.3\",\"235.5\",\"245.4\",\"204.5\",\"246.1\",\"236.3\",\"242.1\",\"211.7\",\"235.5\",\"243.0\",\"249.2\",\"229.7\",\"207.5\",\"247.1\",\"204.7\",\"229.8\",\"238.2\",\"239.3\",\"200.2\",\"206.8\",\"240.4\",\"226.5\",\"302.7\",\"239.3\",\"226.4\",\"210.5\",\"235.0\",\"245.0\",\"225.7\",\"208.5\",\"241.8\",\"230.4\",\"234.3\",\"287.2\",\"240.5\",\"231.1\",\"236.4\",\"237.7\",\"243.7\",\"335.5\",\"215.9\",\"243.6\",\"211.1\",\"236.7\",\"248.8\",\"278.4\",\"343.0\",\"236.1\",\"232.1\",\"233.0\",\"235.0\",\"242.3\",\"220.1\",\"213.1\",\"220.7\",\"241.1\",\"243.6\",\"314.6\",\"218.8\",\"224.9\",\"246.1\",\"240.3\",\"230.4\",\"211.7\",\"234.4\",\"207.0\",\"227.7\",\"226.6\",\"301.2\",\"308.9\",\"266.3\",\"346.9\",\"252.6\",\"232.8\",\"208.9\",\"241.3\",\"211.5\",\"241.4\",\"237.2\",\"242.1\",\"327.5\",\"310.8\",\"229.5\",\"242.2\",\"224.3\",\"245.2\",\"228.1\",\"232.9\",\"242.6\",\"209.9\",\"245.6\",\"243.8\",\"305.6\",\"210.3\",\"235.6\",\"213.4\",\"228.3\",\"238.1\",\"280.9\",\"269.0\",\"231.0\",\"208.5\",\"213.1\",\"234.5\",\"233.2\",\"245.4\",\"207.8\",\"248.4\",\"226.7\",\"245.8\",\"309.0\",\"341.8\",\"207.3\",\"207.4\",\"239.6\",\"241.4\",\"240.7\",\"311.9\",\"234.1\",\"223.7\",\"244.8\",\"232.5\",\"239.1\",\"328.0\",\"297.9\",\"226.0\",\"233.9\",\"230.5\",\"231.2\",\"231.3\",\"228.3\",\"203.3\",\"248.6\",\"238.9\",\"242.5\",\"317.4\",\"243.1\",\"230.8\",\"236.7\",\"244.2\",\"244.4\",\"331.5\",\"317.7\",\"245.0\",\"238.2\",\"200.7\",\"225.2\",\"246.4\",\"246.1\",\"233.8\",\"246.4\",\"236.4\",\"241.2\",\"232.7\",\"215.5\",\"239.2\",\"234.9\",\"228.4\",\"242.2\",\"240.8\",\"249.8\",\"230.2\",\"243.4\",\"340.1\",\"267.6\",\"245.8\",\"209.4\",\"238.4\",\"247.3\",\"235.1\",\"215.8\",\"242.8\",\"240.1\",\"238.7\",\"228.2\",\"328.1\",\"312.4\",\"254.5\",\"230.2\",\"202.0\",\"213.1\",\"235.1\",\"248.9\",\"236.6\",\"211.0\",\"230.4\",\"235.9\",\"238.8\",\"299.6\",\"328.4\",\"224.5\",\"213.9\",\"236.4\",\"242.6\",\"236.2\",\"316.5\",\"336.0\",\"228.4\",\"240.1\",\"247.4\",\"247.9\",\"248.6\",\"302.0\",\"213.6\",\"214.0\",\"206.5\",\"246.0\",\"229.6\",\"277.0\",\"220.4\",\"246.5\",\"211.6\",\"249.9\",\"237.4\",\"230.2\",\"220.3\",\"212.8\",\"241.1\",\"244.5\",\"327.3\",\"335.8\",\"246.6\",\"239.8\",\"246.8\",\"245.5\",\"235.0\",\"222.6\",\"207.1\",\"242.2\",\"247.1\",\"227.3\",\"298.1\",\"220.6\",\"202.5\",\"222.8\",\"234.6\",\"232.7\",\"346.2\",\"327.9\",\"293.8\",\"323.5\",\"216.7\",\"216.7\",\"231.5\",\"250.0\",\"249.8\",\"322.0\",\"219.8\",\"215.1\",\"246.4\",\"229.9\",\"237.3\",\"244.2\",\"247.8\",\"202.1\",\"233.4\",\"225.4\",\"347.6\",\"261.2\",\"236.6\",\"228.4\",\"203.3\",\"241.5\",\"239.1\",\"303.0\",\"222.1\",\"226.0\",\"244.2\",\"227.9\",\"229.6\",\"270.2\",\"218.2\",\"242.7\",\"202.2\",\"249.0\",\"244.0\",\"246.7\",\"203.1\",\"215.3\",\"237.5\",\"235.6\",\"251.8\",\"278.8\",\"261.4\",\"338.0\",\"330.0\",\"208.6\",\"231.4\",\"244.6\",\"202.5\",\"244.4\",\"233.7\",\"261.8\",\"260.6\",\"243.1\",\"202.5\",\"247.3\",\"225.5\",\"231.4\",\"312.8\",\"216.1\",\"206.9\",\"223.6\",\"229.5\",\"239.9\",\"290.5\",\"332.9\",\"239.7\",\"205.0\",\"221.5\",\"228.6\",\"231.7\",\"316.8\",\"272.3\",\"202.4\",\"212.9\",\"213.8\",\"237.2\",\"233.4\",\"340.4\",\"298.3\",\"237.8\",\"240.6\",\"211.7\",\"235.7\",\"233.5\",\"342.4\",\"317.1\",\"333.9\",\"304.2\",\"239.6\",\"222.4\",\"207.8\",\"244.7\",\"226.5\",\"337.3\",\"252.0\",\"241.4\",\"231.1\",\"207.1\",\"237.0\",\"244.9\",\"289.4\",\"306.1\",\"243.9\",\"241.4\",\"218.4\",\"227.6\",\"232.3\",\"309.3\",\"311.0\",\"233.0\",\"229.6\",\"239.3\",\"228.9\",\"231.9\",\"210.6\",\"200.4\",\"247.6\",\"245.3\",\"228.5\",\"216.2\",\"219.6\",\"200.9\",\"227.9\",\"234.6\",\"345.8\",\"299.2\",\"215.4\",\"227.8\",\"210.4\",\"226.5\",\"242.7\",\"349.2\",\"242.5\",\"209.5\",\"210.9\",\"241.7\",\"232.0\",\"319.8\",\"238.5\",\"215.0\",\"239.0\",\"226.2\",\"230.1\",\"251.3\",\"282.3\",\"248.4\",\"245.1\",\"206.1\",\"249.8\",\"244.9\",\"214.4\",\"219.7\",\"221.6\",\"244.9\",\"242.0\",\"288.5\",\"236.1\",\"242.2\",\"236.7\",\"247.8\",\"231.5\",\"267.1\",\"220.2\",\"217.4\",\"201.4\",\"245.9\",\"243.2\",\"214.5\",\"240.0\",\"241.4\",\"236.1\",\"237.7\",\"334.5\",\"238.0\",\"230.8\",\"203.2\",\"230.7\",\"243.8\",\"211.4\",\"215.7\",\"235.6\",\"225.0\",\"247.4\",\"225.4\",\"239.3\",\"223.2\",\"245.0\",\"231.4\",\"345.6\",\"273.9\",\"219.3\",\"211.2\",\"207.9\",\"239.1\",\"238.3\",\"256.1\",\"213.6\",\"219.0\",\"211.2\",\"250.0\",\"241.7\",\"200.9\",\"211.6\",\"250.0\",\"247.1\",\"230.0\",\"209.1\",\"201.1\",\"232.6\",\"229.8\",\"233.8\",\"308.3\",\"225.9\",\"211.6\",\"236.1\",\"231.0\",\"245.9\",\"288.6\",\"210.3\",\"211.9\",\"241.8\",\"248.8\",\"226.8\",\"256.3\",\"291.3\",\"208.8\",\"238.2\",\"231.7\",\"228.8\",\"242.1\",\"263.5\",\"280.9\",\"258.6\",\"206.4\",\"291.7\",\"209.2\",\"218.5\",\"226.7\",\"235.0\",\"236.9\",\"221.5\",\"246.0\",\"211.2\",\"237.8\",\"231.9\",\"214.9\",\"246.2\",\"226.8\",\"248.0\",\"230.3\",\"239.3\",\"221.2\",\"224.2\",\"228.2\",\"246.9\",\"200.5\",\"248.0\",\"208.5\",\"228.9\",\"247.9\",\"328.5\",\"206.7\",\"237.5\",\"248.0\",\"232.2\",\"238.9\",\"342.7\",\"229.2\",\"209.6\",\"243.6\",\"243.3\",\"234.3\",\"252.6\",\"219.1\",\"225.0\",\"200.1\",\"243.7\",\"240.7\",\"347.0\",\"321.3\",\"210.0\",\"230.6\",\"231.6\",\"239.3\",\"249.4\",\"308.3\",\"231.3\",\"213.3\",\"218.3\",\"229.9\",\"227.2\",\"334.9\",\"202.7\",\"223.1\",\"245.9\",\"230.1\",\"245.9\",\"218.7\",\"226.3\",\"210.2\",\"238.1\",\"227.6\",\"323.3\",\"289.8\",\"216.7\",\"249.0\",\"224.7\",\"237.5\",\"243.5\",\"305.2\",\"222.8\",\"227.2\",\"208.3\",\"242.7\",\"238.1\",\"284.6\",\"266.2\",\"342.0\",\"291.4\",\"286.6\",\"272.8\",\"263.9\",\"244.0\",\"219.3\",\"211.9\",\"237.2\",\"247.2\",\"331.2\",\"213.3\",\"210.9\",\"202.5\",\"226.9\",\"246.0\",\"304.0\",\"321.0\",\"325.7\",\"224.4\",\"244.5\",\"200.6\",\"238.0\",\"234.4\",\"203.7\",\"248.8\",\"229.2\",\"247.3\",\"244.5\",\"347.2\",\"264.4\",\"237.5\",\"244.4\",\"246.0\",\"237.7\",\"228.2\",\"311.4\",\"316.6\",\"204.3\",\"245.8\",\"208.1\",\"229.6\",\"235.4\",\"297.1\",\"264.6\",\"202.2\",\"201.0\",\"233.9\",\"225.6\",\"240.7\",\"283.2\",\"317.9\",\"224.5\",\"214.9\",\"244.9\",\"242.0\",\"236.0\",\"333.5\",\"235.6\",\"217.7\",\"222.4\",\"247.7\",\"225.5\",\"307.3\",\"232.9\",\"235.7\",\"226.5\",\"237.3\",\"236.6\",\"316.6\",\"272.9\",\"214.2\",\"249.6\",\"219.6\",\"248.6\",\"246.7\",\"295.4\",\"215.0\",\"240.7\",\"204.8\",\"245.2\",\"225.9\",\"220.3\",\"243.4\",\"244.5\",\"232.1\",\"229.8\",\"240.1\",\"244.5\",\"227.2\",\"239.3\",\"248.2\",\"267.4\",\"242.0\",\"209.7\",\"227.1\",\"237.5\",\"240.8\",\"238.4\",\"239.1\",\"231.9\",\"231.2\",\"225.7\",\"231.6\",\"213.3\",\"212.3\",\"245.4\",\"240.7\",\"313.0\",\"341.2\",\"217.3\",\"215.5\",\"238.7\",\"249.2\",\"240.4\",\"339.4\",\"249.9\",\"237.6\",\"215.0\",\"226.0\",\"226.7\",\"291.4\",\"256.0\",\"313.5\",\"268.2\",\"214.5\",\"206.5\",\"225.1\",\"236.5\",\"240.7\",\"208.9\",\"227.5\",\"245.4\",\"239.1\",\"247.3\",\"273.0\",\"324.4\",\"206.7\",\"241.6\",\"244.9\",\"239.4\",\"243.1\",\"329.2\",\"319.6\",\"243.6\",\"239.4\",\"239.9\",\"230.8\",\"229.4\",\"274.5\",\"223.3\",\"243.9\",\"200.7\",\"245.3\",\"243.4\",\"345.5\",\"303.4\",\"230.9\",\"216.3\",\"233.7\",\"240.0\",\"233.0\",\"317.4\",\"243.8\",\"233.3\",\"234.9\",\"246.9\",\"246.6\",\"278.5\",\"337.6\",\"233.8\",\"209.0\",\"213.7\",\"229.2\",\"236.7\",\"227.0\",\"227.1\",\"223.8\",\"233.2\",\"229.3\",\"337.2\",\"246.6\",\"241.5\",\"248.1\",\"237.9\",\"244.3\",\"327.5\",\"306.0\",\"203.1\",\"206.2\",\"217.7\",\"240.6\",\"238.7\",\"253.0\",\"265.4\",\"249.1\",\"203.8\",\"233.2\",\"237.0\",\"227.0\",\"207.7\",\"230.4\",\"204.6\",\"246.0\",\"240.5\",\"338.0\",\"254.1\",\"337.8\",\"253.4\",\"290.3\",\"245.0\",\"230.8\",\"246.2\",\"228.3\",\"245.8\",\"276.2\",\"251.9\",\"201.9\",\"228.8\",\"217.7\",\"248.7\",\"248.4\",\"324.5\",\"225.1\",\"219.6\",\"231.6\",\"229.4\",\"244.7\",\"347.2\",\"225.5\",\"206.7\",\"249.1\",\"226.5\",\"231.5\",\"254.9\",\"338.9\",\"281.6\",\"274.4\",\"227.4\",\"231.9\",\"230.1\",\"233.5\",\"243.1\",\"200.3\",\"234.5\",\"246.7\",\"236.0\",\"247.9\",\"320.4\",\"229.1\",\"212.6\",\"217.6\",\"233.8\",\"234.4\",\"292.7\",\"219.5\",\"241.6\",\"214.8\",\"236.9\",\"244.1\",\"329.9\",\"285.7\",\"215.5\",\"226.0\",\"203.1\",\"241.5\",\"246.6\",\"298.1\",\"202.8\",\"203.6\",\"225.5\",\"233.7\",\"248.5\",\"301.5\",\"224.9\",\"210.5\",\"244.9\",\"244.4\",\"239.1\",\"288.0\",\"327.2\",\"277.3\",\"252.3\",\"261.8\",\"241.2\",\"241.2\",\"202.3\",\"248.2\",\"229.6\",\"247.4\",\"268.0\",\"313.9\",\"210.6\",\"215.7\",\"212.6\",\"246.0\",\"244.5\",\"273.2\",\"339.1\",\"202.8\",\"201.0\",\"225.6\",\"247.4\",\"240.3\",\"212.8\",\"211.3\",\"201.1\",\"234.3\",\"238.1\",\"284.6\",\"235.2\",\"238.9\",\"220.1\",\"236.0\",\"232.9\",\"307.6\",\"207.9\",\"221.2\",\"221.8\",\"235.1\",\"246.3\",\"315.5\",\"243.2\",\"210.5\",\"202.3\",\"243.3\",\"241.8\",\"284.0\",\"248.9\",\"211.5\",\"214.5\",\"225.2\",\"234.6\",\"279.0\",\"256.1\",\"214.8\",\"243.4\",\"245.2\",\"248.0\",\"235.8\",\"312.3\",\"216.2\",\"217.2\",\"235.6\",\"248.5\",\"240.4\",\"300.8\",\"294.6\",\"242.1\",\"202.4\",\"202.8\",\"240.2\",\"232.0\",\"306.4\",\"216.6\",\"235.7\",\"222.4\",\"237.7\",\"235.5\",\"281.7\",\"255.2\",\"336.9\",\"242.4\",\"226.2\",\"211.8\",\"231.3\",\"235.6\",\"258.8\",\"227.6\",\"209.3\",\"213.7\",\"228.1\",\"237.7\",\"222.3\",\"246.6\",\"211.6\",\"248.3\",\"228.6\",\"217.7\",\"225.2\",\"239.3\",\"237.2\",\"248.4\",\"245.4\",\"206.2\",\"247.2\",\"239.7\",\"236.3\",\"271.2\",\"220.0\",\"205.7\",\"202.4\",\"237.0\",\"232.3\",\"258.5\",\"249.2\",\"201.1\",\"217.4\",\"233.9\",\"240.0\",\"295.7\",\"325.5\",\"341.0\",\"208.2\",\"249.4\",\"224.6\",\"230.7\",\"249.6\",\"229.5\",\"231.0\",\"239.5\",\"236.9\",\"246.0\",\"238.9\",\"247.7\",\"235.0\",\"226.3\",\"227.4\",\"268.1\",\"279.2\",\"233.1\",\"221.8\",\"248.0\",\"236.8\",\"231.5\",\"241.8\",\"239.5\",\"215.5\",\"232.4\",\"230.7\",\"318.3\",\"235.4\",\"235.4\",\"244.6\",\"229.6\",\"231.6\",\"348.5\",\"244.4\",\"200.5\",\"212.8\",\"242.1\",\"236.8\",\"212.8\",\"214.6\",\"207.4\",\"225.3\",\"236.3\",\"347.8\",\"273.3\",\"212.0\",\"235.7\",\"247.3\",\"238.5\",\"244.1\",\"332.8\",\"274.6\",\"216.9\",\"228.1\",\"248.4\",\"249.7\",\"236.1\",\"316.6\",\"322.5\",\"326.0\",\"278.6\",\"201.9\",\"287.8\",\"221.7\",\"204.7\",\"222.5\",\"214.8\",\"205.5\",\"236.2\",\"233.5\",\"343.8\",\"296.1\",\"227.3\",\"228.4\",\"234.2\",\"236.3\",\"238.7\",\"222.0\",\"232.7\",\"225.1\",\"232.7\",\"240.7\",\"237.1\",\"206.1\",\"213.4\",\"246.7\",\"228.9\",\"278.5\",\"326.0\",\"240.8\",\"229.3\",\"241.9\",\"244.3\",\"239.2\",\"291.6\",\"332.1\",\"339.6\",\"218.1\",\"265.7\",\"297.6\",\"202.5\",\"212.1\",\"207.9\",\"202.0\",\"241.5\",\"242.8\",\"225.2\",\"232.5\",\"303.5\",\"214.0\",\"246.2\",\"205.6\",\"225.9\",\"239.1\",\"253.0\",\"229.1\",\"201.3\",\"232.5\",\"235.5\",\"226.6\",\"332.3\",\"236.5\",\"212.5\",\"220.1\",\"232.9\",\"241.7\",\"257.8\",\"285.2\",\"242.0\",\"238.8\",\"233.5\",\"234.1\",\"247.8\",\"209.7\",\"218.9\",\"233.8\",\"229.0\",\"239.8\",\"330.8\",\"303.2\",\"207.0\",\"249.4\",\"216.5\",\"248.2\",\"244.9\",\"248.6\",\"216.7\",\"206.4\",\"241.8\",\"234.8\",\"233.0\",\"219.2\",\"205.2\",\"229.4\",\"245.3\",\"339.7\",\"327.5\",\"240.6\",\"232.7\",\"237.7\",\"249.9\",\"226.4\",\"244.2\",\"209.2\",\"202.8\",\"228.4\",\"233.5\",\"292.1\",\"270.9\",\"232.2\",\"217.3\",\"247.0\",\"238.9\",\"244.7\",\"207.7\",\"247.9\",\"248.6\",\"240.3\",\"239.2\",\"349.5\",\"243.3\",\"214.9\",\"248.1\",\"236.0\",\"238.0\",\"243.4\",\"205.9\",\"240.0\",\"245.8\",\"244.0\",\"274.6\",\"286.8\",\"221.8\",\"235.2\",\"238.1\",\"236.1\",\"240.4\",\"282.3\",\"333.9\",\"222.8\",\"246.8\",\"221.2\",\"241.1\",\"238.1\",\"311.0\",\"314.9\",\"237.5\",\"231.6\",\"200.7\",\"226.5\",\"247.6\",\"279.4\",\"243.7\",\"227.3\",\"230.1\",\"242.6\",\"248.5\",\"209.1\",\"223.7\",\"237.6\",\"246.3\",\"227.2\",\"323.2\",\"213.4\",\"217.7\",\"214.7\",\"232.7\",\"243.8\",\"321.9\",\"276.6\",\"209.3\",\"220.1\",\"243.2\",\"246.3\",\"235.2\",\"239.5\",\"239.0\",\"203.2\",\"248.2\",\"229.7\",\"228.6\",\"217.4\",\"203.6\",\"225.4\",\"225.2\",\"243.9\",\"241.2\",\"237.8\",\"230.4\",\"238.8\",\"317.7\",\"200.2\",\"246.9\",\"230.5\",\"242.9\",\"240.0\",\"253.7\",\"270.1\",\"208.5\",\"211.6\",\"220.2\",\"240.5\",\"227.6\",\"260.9\",\"308.0\",\"301.1\",\"244.7\",\"200.1\",\"236.4\",\"226.2\",\"227.4\",\"286.3\",\"327.9\",\"281.0\",\"235.7\",\"205.0\",\"225.6\",\"236.3\",\"227.6\",\"241.1\",\"208.3\",\"221.8\",\"244.2\",\"240.6\",\"337.3\",\"253.2\",\"318.6\",\"289.9\",\"292.1\",\"243.4\",\"202.7\",\"234.7\",\"227.5\",\"244.6\",\"234.5\",\"201.8\",\"216.2\",\"212.2\",\"228.0\",\"243.5\",\"244.1\",\"216.0\",\"235.9\",\"245.9\",\"237.6\",\"295.8\",\"341.5\",\"205.0\",\"230.4\",\"212.0\",\"233.9\",\"236.1\",\"348.4\",\"215.8\",\"245.3\",\"243.7\",\"235.0\",\"248.1\",\"315.2\",\"323.2\",\"235.7\",\"242.2\",\"210.9\",\"232.7\",\"238.9\",\"257.4\",\"321.9\",\"242.8\",\"231.3\",\"232.3\",\"228.5\",\"241.2\",\"296.4\",\"206.9\",\"235.4\",\"213.8\",\"249.8\",\"242.4\",\"339.4\",\"233.9\",\"242.6\",\"205.2\",\"230.6\",\"236.3\",\"279.2\",\"249.1\",\"247.1\",\"241.3\",\"243.5\",\"239.4\",\"346.0\",\"339.2\",\"232.5\",\"215.5\",\"240.9\",\"232.9\",\"240.9\",\"264.5\",\"310.8\",\"222.3\",\"205.6\",\"234.7\",\"238.5\",\"229.3\",\"341.0\",\"226.9\",\"249.7\",\"245.0\",\"233.2\",\"247.4\",\"282.3\",\"215.6\",\"210.6\",\"200.6\",\"237.3\",\"227.8\",\"277.4\",\"208.0\",\"206.5\",\"218.7\",\"249.4\",\"246.4\",\"270.2\",\"348.1\",\"201.8\",\"238.4\",\"232.6\",\"240.5\",\"237.7\",\"265.0\",\"303.1\",\"241.3\",\"218.0\",\"245.1\",\"232.3\",\"228.6\",\"235.2\",\"246.2\",\"231.7\",\"236.7\",\"244.8\",\"300.3\",\"206.8\",\"240.8\",\"213.1\",\"225.3\",\"225.5\",\"283.2\",\"319.0\",\"226.3\",\"228.1\",\"248.7\",\"230.6\",\"232.5\",\"332.2\",\"326.0\",\"220.2\",\"208.9\",\"240.8\",\"245.2\",\"227.6\",\"249.7\",\"215.1\",\"235.5\",\"240.4\",\"225.7\",\"258.2\",\"223.2\",\"235.6\",\"223.7\",\"230.4\",\"244.3\",\"291.2\",\"252.1\",\"228.2\",\"237.6\",\"216.9\",\"240.4\",\"235.4\",\"293.9\",\"211.7\",\"208.8\",\"203.6\",\"225.4\",\"240.9\",\"258.2\",\"322.0\",\"308.4\",\"247.9\",\"221.9\",\"213.2\",\"242.3\",\"249.3\",\"329.7\",\"221.1\",\"200.3\",\"248.0\",\"234.4\",\"240.0\",\"278.4\",\"231.9\",\"240.2\",\"247.9\",\"235.4\",\"232.6\",\"309.7\",\"225.0\",\"247.7\",\"212.9\",\"226.4\",\"244.8\",\"218.9\",\"225.3\",\"245.1\",\"239.0\",\"249.7\",\"226.2\",\"246.5\",\"215.8\",\"229.5\",\"229.1\",\"204.9\",\"245.4\",\"202.1\",\"237.2\",\"248.1\",\"247.5\",\"232.1\",\"247.2\",\"241.1\",\"244.4\",\"329.9\",\"316.1\",\"222.6\",\"236.5\",\"232.6\",\"245.8\",\"247.2\",\"312.1\",\"303.0\",\"271.2\",\"343.4\",\"283.4\",\"217.8\",\"234.0\",\"209.6\",\"202.5\",\"226.2\",\"235.5\",\"298.1\",\"304.2\",\"232.1\",\"215.4\",\"204.1\",\"239.8\",\"243.3\",\"313.6\",\"346.9\",\"247.3\",\"205.6\",\"211.7\",\"231.3\",\"234.7\",\"244.8\",\"238.2\",\"241.0\",\"239.0\",\"233.6\",\"269.8\",\"217.8\",\"206.5\",\"205.4\",\"246.3\",\"247.4\",\"333.0\",\"255.0\",\"207.6\",\"240.4\",\"239.9\",\"236.9\",\"228.9\",\"273.8\",\"333.1\",\"229.2\",\"213.0\",\"239.0\",\"230.5\",\"246.5\",\"280.9\",\"217.4\",\"227.5\",\"248.9\",\"226.1\",\"231.6\",\"340.9\",\"259.6\",\"224.3\",\"223.6\",\"248.7\",\"233.4\",\"240.5\",\"222.6\",\"244.2\",\"223.0\",\"232.4\",\"249.8\",\"216.6\",\"241.4\",\"208.2\",\"241.6\",\"240.0\",\"314.4\",\"238.4\",\"219.8\",\"234.8\",\"237.8\",\"229.4\",\"326.3\",\"348.9\",\"212.3\",\"224.6\",\"242.1\",\"249.2\",\"234.6\",\"233.4\",\"211.1\",\"239.9\",\"248.4\",\"240.6\",\"282.8\",\"250.0\",\"247.3\",\"231.2\",\"247.9\",\"244.0\",\"339.9\",\"244.3\",\"223.5\",\"228.1\",\"227.5\",\"236.8\",\"259.6\",\"242.3\",\"247.8\",\"219.6\",\"234.8\",\"242.4\",\"301.5\",\"219.1\",\"214.8\",\"248.5\",\"246.8\",\"225.1\",\"289.7\",\"252.2\",\"229.5\",\"227.8\",\"204.1\",\"243.6\",\"248.2\",\"245.9\",\"201.1\",\"236.2\",\"232.5\",\"248.2\",\"296.8\",\"250.3\",\"212.4\",\"203.9\",\"231.6\",\"248.8\",\"244.6\",\"266.5\",\"255.0\",\"305.4\",\"252.7\",\"204.0\",\"225.4\",\"226.0\",\"245.1\",\"241.3\",\"239.5\",\"238.3\",\"226.0\",\"231.4\",\"244.9\",\"337.2\",\"233.0\",\"234.9\",\"237.0\",\"245.6\",\"246.8\",\"251.8\",\"242.8\",\"241.7\",\"237.1\",\"239.9\",\"232.7\",\"258.3\",\"291.9\",\"202.9\",\"214.7\",\"231.3\",\"246.4\",\"232.6\",\"297.0\",\"274.1\",\"237.9\",\"236.2\",\"231.8\",\"225.7\",\"248.4\",\"290.2\",\"276.0\",\"229.8\",\"209.7\",\"225.1\",\"242.7\",\"246.5\",\"345.7\",\"217.0\",\"204.2\",\"231.3\",\"235.2\",\"233.6\",\"306.4\",\"212.4\",\"208.1\",\"210.5\",\"244.4\",\"242.7\",\"299.7\",\"328.3\",\"342.9\",\"216.9\",\"269.2\",\"254.3\",\"211.1\",\"190.3\",\"203.0\",\"237.9\",\"220.3\",\"240.3\",\"241.2\",\"253.3\",\"349.5\",\"223.7\",\"209.4\",\"206.3\",\"226.5\",\"247.5\",\"233.1\",\"207.7\",\"227.2\",\"235.9\",\"229.2\",\"251.5\",\"204.6\",\"225.0\",\"234.2\",\"230.2\",\"241.0\",\"293.5\",\"301.7\",\"238.8\",\"236.5\",\"243.7\",\"232.5\",\"225.4\",\"309.2\",\"303.1\",\"215.3\",\"219.1\",\"209.6\",\"233.6\",\"236.8\",\"222.9\",\"232.2\",\"227.9\",\"234.8\",\"230.4\",\"268.2\",\"248.8\",\"214.7\",\"229.8\",\"228.5\",\"244.5\",\"307.1\",\"339.6\",\"255.7\",\"284.6\",\"266.9\",\"224.8\",\"238.3\",\"205.0\",\"221.4\",\"220.4\",\"232.5\",\"232.3\",\"232.9\",\"208.2\",\"247.3\",\"247.3\",\"249.6\",\"316.2\",\"249.9\",\"238.3\",\"215.1\",\"236.7\",\"228.6\",\"202.8\",\"239.2\",\"205.8\",\"225.3\",\"247.7\",\"293.0\",\"236.5\",\"235.0\",\"214.2\",\"246.1\",\"245.6\",\"311.5\",\"325.5\",\"212.3\",\"204.0\",\"243.5\",\"231.3\",\"230.5\",\"262.1\",\"324.0\",\"236.2\",\"217.3\",\"215.8\",\"233.5\",\"235.9\",\"319.3\",\"305.7\",\"213.1\",\"213.9\",\"228.3\",\"244.6\",\"234.3\",\"255.6\",\"243.9\",\"211.6\",\"241.0\",\"238.8\",\"225.5\",\"205.5\",\"221.2\",\"212.9\",\"228.6\",\"230.3\",\"253.3\",\"220.5\",\"245.6\",\"209.6\",\"233.3\",\"247.7\",\"220.9\",\"207.4\",\"236.2\",\"244.5\",\"233.4\",\"287.6\",\"221.3\",\"245.9\",\"200.4\",\"245.7\",\"237.9\",\"240.1\",\"204.4\",\"219.3\",\"249.1\",\"247.4\",\"292.7\",\"330.6\",\"201.5\",\"249.1\",\"243.0\",\"235.2\",\"227.1\",\"292.2\",\"222.1\",\"201.6\",\"220.9\",\"239.5\",\"229.0\",\"311.5\",\"254.0\",\"240.2\",\"211.4\",\"229.9\",\"240.9\",\"227.1\",\"343.6\",\"208.8\",\"230.9\",\"227.0\",\"241.1\",\"241.8\",\"209.8\",\"242.6\",\"241.4\",\"239.0\",\"234.3\",\"323.8\",\"281.8\",\"324.5\",\"272.2\",\"248.4\",\"240.0\",\"229.8\",\"241.7\",\"234.8\",\"293.0\",\"262.3\",\"225.0\",\"204.9\",\"249.0\",\"232.4\",\"244.9\",\"346.4\",\"277.0\",\"223.2\",\"225.3\",\"243.7\",\"226.0\",\"234.2\",\"313.8\",\"243.1\",\"224.4\",\"207.6\",\"231.0\",\"233.2\",\"232.4\",\"219.6\",\"234.8\",\"239.2\",\"228.9\",\"214.5\",\"220.2\",\"209.6\",\"225.3\",\"231.9\",\"263.0\",\"295.2\",\"211.1\",\"228.7\",\"240.5\",\"249.3\",\"232.6\",\"283.6\",\"318.7\",\"238.7\",\"214.0\",\"214.1\",\"231.9\",\"227.0\",\"213.2\",\"210.3\",\"225.7\",\"228.6\",\"239.0\",\"317.5\",\"324.9\",\"279.4\",\"265.3\",\"270.2\",\"277.5\",\"234.7\",\"217.6\",\"228.3\",\"249.0\",\"231.5\",\"244.1\",\"246.9\",\"219.8\",\"231.1\",\"245.6\",\"318.4\",\"283.9\",\"213.5\",\"232.8\",\"204.5\",\"231.2\",\"236.7\",\"237.5\",\"241.5\",\"226.1\",\"246.5\",\"248.3\",\"234.7\",\"242.8\",\"243.6\",\"244.8\",\"237.8\",\"271.1\",\"237.4\",\"238.0\",\"215.5\",\"248.2\",\"241.6\",\"277.5\",\"232.3\",\"212.3\",\"204.7\",\"237.3\",\"228.3\",\"322.0\",\"218.5\",\"228.0\",\"228.9\",\"249.9\",\"230.4\",\"250.3\",\"325.4\",\"302.3\",\"293.6\",\"220.8\",\"228.6\",\"220.2\",\"233.3\",\"237.3\",\"297.6\",\"346.4\",\"202.3\",\"224.5\",\"213.9\",\"231.8\",\"234.3\",\"256.6\",\"342.7\",\"219.3\",\"227.6\",\"239.2\",\"245.3\",\"235.5\",\"349.8\",\"234.1\",\"211.2\",\"205.2\",\"244.0\",\"234.7\",\"272.8\",\"238.4\",\"232.2\",\"236.2\",\"231.7\",\"248.9\",\"205.9\",\"240.1\",\"227.1\",\"247.9\",\"245.7\",\"283.2\",\"338.0\",\"318.5\",\"259.3\",\"214.1\",\"248.5\",\"190.4\",\"199.3\",\"218.1\",\"241.9\",\"200.2\",\"234.4\",\"246.2\",\"230.7\",\"279.9\",\"267.9\",\"217.9\",\"229.9\",\"220.9\",\"240.5\",\"240.8\",\"306.5\",\"207.3\",\"201.7\",\"225.3\",\"247.0\",\"238.3\",\"258.3\",\"254.6\",\"201.2\",\"232.1\",\"239.6\",\"242.6\",\"247.9\",\"323.9\",\"279.7\",\"243.8\",\"221.0\",\"227.1\",\"236.0\",\"228.1\",\"223.1\",\"229.8\",\"238.2\",\"239.4\",\"240.2\",\"348.9\",\"206.3\",\"207.0\",\"224.1\",\"237.5\",\"239.0\",\"246.4\",\"200.0\",\"234.1\",\"232.9\",\"240.2\",\"308.6\",\"223.0\",\"249.1\",\"240.1\",\"229.4\",\"249.2\",\"331.6\",\"295.6\",\"222.1\",\"218.4\",\"223.7\",\"239.0\",\"238.8\",\"252.4\",\"247.3\",\"249.1\",\"213.0\",\"236.0\",\"243.0\",\"234.7\",\"229.3\",\"221.9\",\"237.6\",\"240.8\",\"325.6\",\"240.3\",\"216.4\",\"203.0\",\"233.7\",\"249.6\",\"312.7\",\"205.8\",\"214.7\",\"228.3\",\"231.0\",\"243.5\",\"333.3\",\"272.8\",\"234.6\",\"242.5\",\"200.8\",\"231.6\",\"228.5\",\"262.3\",\"224.0\",\"249.2\",\"208.7\",\"234.9\",\"245.2\",\"235.9\",\"203.0\",\"223.3\",\"228.6\",\"231.1\",\"228.4\",\"220.8\",\"211.8\",\"243.3\",\"245.0\",\"224.7\",\"232.4\",\"242.8\",\"226.3\",\"245.7\",\"334.4\",\"320.3\",\"237.3\",\"220.5\",\"208.9\",\"231.7\",\"246.2\",\"302.8\",\"225.2\",\"220.1\",\"236.5\",\"233.8\",\"233.5\",\"334.5\",\"238.8\",\"224.0\",\"232.3\",\"245.1\",\"225.4\",\"275.1\",\"204.9\",\"214.7\",\"206.7\",\"226.5\",\"234.6\",\"255.4\",\"336.4\",\"240.1\",\"249.0\",\"203.8\",\"240.3\",\"246.9\",\"258.2\",\"221.7\",\"212.1\",\"245.2\",\"247.2\",\"225.2\",\"331.7\",\"327.1\",\"249.1\",\"245.5\",\"207.1\",\"236.0\",\"238.4\",\"329.2\",\"209.6\",\"224.9\",\"239.0\",\"227.8\",\"247.9\",\"293.4\",\"308.4\",\"238.2\",\"234.2\",\"243.4\",\"243.4\",\"246.0\",\"337.4\",\"292.3\",\"239.6\",\"249.5\",\"229.0\",\"236.7\",\"242.0\",\"316.7\",\"243.6\",\"241.9\",\"219.2\",\"239.2\",\"246.8\",\"322.1\",\"251.3\",\"213.0\",\"247.1\",\"220.1\",\"227.6\",\"227.0\",\"261.3\",\"284.2\",\"347.1\",\"222.7\",\"286.7\",\"270.1\",\"198.6\",\"216.3\",\"202.3\",\"220.9\",\"238.9\",\"230.4\",\"238.6\",\"298.7\",\"272.9\",\"300.4\",\"349.1\",\"257.8\",\"281.0\",\"243.0\",\"231.3\",\"236.3\",\"216.7\",\"249.3\",\"233.6\",\"334.7\",\"324.8\",\"217.4\",\"225.0\",\"226.0\",\"244.9\",\"241.9\",\"338.5\",\"346.3\",\"200.4\",\"218.2\",\"232.5\",\"232.7\",\"231.8\",\"332.0\",\"231.1\",\"220.0\",\"202.0\",\"236.1\",\"245.2\",\"223.8\",\"211.2\",\"228.5\",\"228.8\",\"244.4\",\"212.4\",\"226.4\",\"226.7\",\"233.4\",\"235.3\",\"237.6\",\"223.8\",\"220.2\",\"232.3\",\"242.9\",\"236.2\",\"242.4\",\"242.5\",\"246.3\",\"226.3\",\"246.6\",\"226.8\",\"249.2\",\"229.3\",\"237.0\",\"317.6\",\"258.7\",\"225.7\",\"240.2\",\"202.5\",\"226.2\",\"231.4\",\"220.5\",\"218.2\",\"207.4\",\"230.9\",\"234.2\",\"324.0\",\"211.7\",\"238.1\",\"229.9\",\"237.0\",\"230.0\",\"226.5\",\"202.6\",\"210.4\",\"241.2\",\"241.5\",\"277.0\",\"240.7\",\"219.9\",\"219.0\",\"240.9\",\"229.3\",\"236.7\",\"227.2\",\"203.8\",\"234.1\",\"238.9\",\"218.1\",\"220.4\",\"243.8\",\"240.6\",\"227.7\",\"302.7\",\"279.4\",\"244.4\",\"220.1\",\"206.5\",\"240.9\",\"227.2\",\"284.7\",\"307.4\",\"225.8\",\"223.0\",\"222.6\",\"241.8\",\"246.0\",\"274.6\",\"223.6\",\"217.8\",\"223.4\",\"227.6\",\"232.9\",\"262.1\",\"259.3\",\"234.4\",\"201.9\",\"237.2\",\"243.7\",\"234.2\",\"304.1\",\"333.5\",\"231.9\",\"226.3\",\"212.4\",\"230.9\",\"226.4\",\"237.8\",\"246.9\",\"238.6\",\"242.8\",\"245.4\",\"213.7\",\"240.7\",\"235.0\",\"248.5\",\"228.6\",\"245.2\",\"227.1\",\"229.4\",\"242.1\",\"239.6\",\"292.5\",\"277.1\",\"287.7\",\"250.8\",\"281.8\",\"226.5\",\"192.2\",\"183.6\",\"216.0\",\"210.1\",\"203.2\",\"215.2\",\"232.5\",\"226.7\",\"235.0\",\"239.1\",\"216.3\",\"239.7\",\"231.1\",\"248.5\",\"238.2\",\"214.5\",\"246.6\",\"236.0\",\"228.5\",\"289.3\",\"247.3\",\"245.9\",\"208.0\",\"246.9\",\"234.5\",\"345.8\",\"243.4\",\"229.4\",\"240.4\",\"243.7\",\"241.8\",\"206.4\",\"213.5\",\"215.1\",\"228.0\",\"249.8\",\"219.3\",\"208.9\",\"211.0\",\"225.6\",\"246.0\",\"264.0\",\"253.6\",\"210.2\",\"239.8\",\"236.0\",\"238.9\",\"233.7\",\"308.8\",\"208.1\",\"219.7\",\"209.2\",\"241.1\",\"239.1\",\"261.9\",\"293.6\",\"235.7\",\"226.1\",\"245.4\",\"237.6\",\"243.0\",\"293.6\",\"219.5\",\"235.5\",\"214.7\",\"237.0\",\"239.3\",\"300.9\",\"217.0\",\"222.2\",\"213.6\",\"226.3\",\"234.3\",\"305.7\",\"211.9\",\"226.9\",\"219.5\",\"235.6\",\"236.3\",\"279.5\",\"261.4\",\"222.3\",\"239.1\",\"227.6\",\"232.0\",\"238.7\",\"348.9\",\"233.7\",\"204.6\",\"247.9\",\"226.7\",\"241.9\",\"299.2\",\"284.7\",\"220.0\",\"226.7\",\"214.6\",\"229.6\",\"241.0\",\"334.3\",\"304.0\",\"231.5\",\"209.8\",\"210.2\",\"246.9\",\"236.2\",\"307.4\",\"243.5\",\"221.5\",\"200.5\",\"228.1\",\"229.0\",\"223.7\",\"217.6\",\"218.9\",\"248.6\",\"225.0\",\"249.5\",\"243.6\",\"238.8\",\"238.0\",\"238.9\",\"246.9\",\"205.0\",\"242.1\",\"243.4\",\"226.5\",\"306.8\",\"244.5\",\"237.7\",\"247.1\",\"228.6\",\"247.2\",\"229.5\",\"245.6\",\"239.4\",\"233.3\",\"239.5\",\"273.6\",\"260.0\",\"217.2\",\"209.8\",\"247.4\",\"234.0\",\"231.0\",\"321.5\",\"208.5\",\"227.1\",\"229.9\",\"244.0\",\"233.3\",\"223.9\",\"214.8\",\"231.9\",\"244.4\",\"246.3\",\"248.1\",\"210.8\",\"243.6\",\"225.8\",\"249.5\",\"293.9\",\"308.1\",\"310.0\",\"314.8\",\"228.6\",\"247.5\",\"231.8\",\"247.2\",\"244.8\",\"236.4\",\"240.0\",\"211.3\",\"232.9\",\"247.6\",\"237.6\",\"223.5\",\"239.6\",\"200.3\",\"233.4\",\"240.8\",\"290.9\",\"213.2\",\"235.1\",\"215.7\",\"229.3\",\"238.9\",\"292.2\",\"252.0\",\"233.1\",\"221.6\",\"225.5\",\"249.3\",\"240.8\",\"338.9\",\"212.8\",\"226.6\",\"222.8\",\"236.0\",\"247.4\",\"218.5\",\"215.7\",\"206.3\",\"229.9\",\"239.3\",\"230.8\",\"234.6\",\"234.8\",\"236.3\",\"242.8\",\"332.6\",\"272.8\",\"219.6\",\"241.4\",\"222.8\",\"249.5\",\"231.9\",\"277.1\",\"232.8\",\"202.3\",\"214.3\",\"238.7\",\"227.1\",\"312.3\",\"297.0\",\"248.7\",\"248.9\",\"217.1\",\"229.2\",\"230.6\",\"220.2\",\"215.0\",\"216.9\",\"236.2\",\"239.8\",\"282.6\",\"217.5\",\"246.8\",\"202.1\",\"237.5\",\"245.1\",\"336.1\",\"275.1\",\"204.2\",\"249.7\",\"220.9\",\"239.9\",\"243.8\",\"344.0\",\"243.9\",\"249.6\",\"201.2\",\"243.0\",\"227.0\",\"260.4\",\"289.4\",\"323.7\",\"305.6\",\"204.1\",\"225.3\",\"202.1\",\"227.8\",\"226.4\",\"244.5\",\"208.1\",\"249.3\",\"225.5\",\"229.4\",\"220.0\",\"215.6\",\"210.2\",\"232.0\",\"228.6\",\"298.6\",\"214.8\",\"239.3\",\"200.8\",\"226.7\",\"225.4\",\"231.1\",\"242.6\",\"217.0\",\"234.7\",\"236.5\",\"201.7\",\"204.5\",\"242.7\",\"234.0\",\"240.7\",\"334.3\",\"293.7\",\"232.3\",\"213.5\",\"238.0\",\"233.7\",\"230.0\",\"268.9\",\"274.6\",\"340.5\",\"308.0\",\"267.3\",\"282.1\",\"262.8\",\"220.3\",\"244.9\",\"202.6\",\"229.4\",\"231.2\",\"341.4\",\"277.7\",\"207.1\",\"220.3\",\"237.1\",\"236.7\",\"243.8\",\"300.6\",\"216.6\",\"217.9\",\"226.5\",\"240.0\",\"247.5\",\"240.6\",\"233.1\",\"242.9\",\"238.1\",\"236.3\",\"277.6\",\"332.2\",\"240.8\",\"241.3\",\"248.4\",\"242.6\",\"239.6\",\"339.3\",\"232.2\",\"241.2\",\"234.2\",\"249.0\",\"239.6\",\"320.2\",\"239.6\",\"206.7\",\"227.4\",\"244.2\",\"248.9\",\"208.3\",\"233.1\",\"222.2\",\"231.9\",\"241.6\",\"331.8\",\"230.2\",\"220.6\",\"213.3\",\"229.7\",\"236.7\",\"296.3\",\"223.8\",\"231.4\",\"248.2\",\"235.3\",\"242.7\",\"250.4\",\"335.0\",\"284.6\",\"343.6\",\"291.9\",\"217.9\",\"201.9\",\"248.6\",\"217.2\",\"248.7\",\"238.5\",\"220.6\",\"205.1\",\"222.7\",\"230.7\",\"248.7\",\"216.9\",\"218.6\",\"244.2\",\"248.2\",\"236.8\",\"221.3\",\"212.8\",\"245.5\",\"233.4\",\"230.3\",\"244.7\",\"246.5\",\"212.8\",\"238.9\",\"229.2\",\"226.2\",\"246.9\",\"246.8\",\"250.0\",\"236.0\",\"285.7\",\"297.6\",\"236.4\",\"223.5\",\"236.6\",\"239.7\",\"232.7\",\"297.8\",\"343.1\",\"216.6\",\"200.5\",\"245.4\",\"247.1\",\"234.6\",\"282.3\",\"200.7\",\"225.7\",\"219.5\",\"241.7\",\"248.8\",\"292.6\",\"337.0\",\"201.7\",\"224.7\",\"215.3\",\"242.3\",\"229.4\",\"227.5\",\"238.4\",\"232.0\",\"239.6\",\"232.0\",\"291.6\",\"257.7\",\"204.7\",\"211.8\",\"214.6\",\"232.1\",\"232.6\",\"319.4\",\"242.8\",\"234.1\",\"203.7\",\"227.8\",\"249.3\",\"349.1\",\"217.8\",\"247.8\",\"205.2\",\"233.2\",\"226.9\",\"272.6\",\"323.6\",\"234.5\",\"234.3\",\"242.5\",\"234.8\",\"234.3\",\"335.3\",\"275.5\",\"231.7\",\"208.6\",\"215.4\",\"237.4\",\"234.4\",\"297.8\",\"244.1\",\"230.8\",\"225.7\",\"230.4\",\"242.1\",\"317.4\",\"249.6\",\"224.1\",\"214.8\",\"235.0\",\"226.7\",\"241.2\",\"206.7\",\"240.5\",\"240.2\",\"244.2\",\"251.6\",\"316.2\",\"232.3\",\"226.9\",\"237.6\",\"246.2\",\"234.5\",\"318.9\",\"215.7\",\"232.3\",\"226.7\",\"233.9\",\"249.5\",\"278.0\",\"325.9\",\"235.4\",\"247.8\",\"223.9\",\"246.5\",\"234.8\",\"223.9\",\"226.1\",\"239.4\",\"229.7\",\"229.2\",\"316.3\",\"330.5\",\"223.7\",\"227.1\",\"241.8\",\"227.5\",\"232.7\",\"328.1\",\"230.8\",\"218.0\",\"210.1\",\"242.0\",\"235.7\",\"269.6\",\"297.5\",\"213.4\",\"215.1\",\"246.3\",\"230.9\",\"236.7\",\"320.3\",\"236.1\",\"201.8\",\"202.1\",\"249.7\",\"229.5\",\"206.6\",\"225.1\",\"218.5\",\"244.2\",\"241.3\",\"346.2\",\"238.2\",\"247.0\",\"242.0\",\"234.5\",\"238.2\",\"221.3\",\"215.8\",\"206.0\",\"229.9\",\"238.7\",\"323.7\",\"232.5\",\"243.9\",\"203.5\",\"244.1\",\"241.5\",\"307.5\",\"329.1\",\"211.1\",\"231.4\",\"215.1\",\"246.6\",\"249.7\",\"218.8\",\"207.0\",\"231.1\",\"249.4\",\"225.2\",\"313.6\",\"231.0\",\"240.5\",\"216.4\",\"247.8\",\"232.6\",\"331.2\",\"277.9\",\"214.6\",\"247.2\",\"233.2\",\"234.5\",\"234.4\",\"349.5\",\"339.7\",\"218.1\",\"235.3\",\"224.2\",\"239.7\",\"245.0\",\"308.7\",\"267.0\",\"236.8\",\"230.5\",\"243.1\",\"232.9\",\"229.3\",\"328.6\",\"336.7\",\"200.2\",\"213.1\",\"213.0\",\"238.6\",\"227.8\",\"300.4\",\"205.2\",\"211.5\",\"242.4\",\"225.6\",\"249.3\",\"297.9\",\"302.7\",\"278.3\",\"300.5\",\"203.6\",\"223.1\",\"246.1\",\"231.2\",\"227.2\",\"290.1\",\"235.8\",\"245.9\",\"218.7\",\"238.9\",\"249.7\",\"215.8\",\"243.4\",\"221.0\",\"245.2\",\"244.7\",\"241.4\",\"234.6\",\"213.2\",\"248.0\",\"228.9\",\"238.3\",\"241.1\",\"204.7\",\"242.3\",\"247.2\",\"276.5\",\"261.4\",\"203.8\",\"246.3\",\"247.0\",\"245.7\",\"237.0\",\"296.1\",\"236.6\",\"242.7\",\"248.8\",\"236.5\",\"247.3\",\"281.3\",\"252.3\",\"232.2\",\"237.6\",\"240.0\",\"237.9\",\"231.6\",\"290.0\",\"259.7\",\"245.1\",\"202.8\",\"223.0\",\"234.1\",\"235.3\",\"241.3\",\"202.7\",\"210.7\",\"243.1\",\"231.3\",\"268.7\",\"341.8\",\"304.7\",\"237.0\",\"286.8\",\"232.1\",\"195.2\",\"221.4\",\"212.4\",\"249.4\",\"234.6\",\"234.8\",\"210.3\",\"228.2\",\"219.4\",\"231.7\",\"231.6\",\"319.4\",\"219.9\",\"235.9\",\"229.2\",\"238.5\",\"232.4\",\"201.7\",\"242.7\",\"234.5\",\"236.3\",\"232.5\",\"276.1\",\"284.2\",\"204.8\",\"200.2\",\"208.1\",\"226.8\",\"246.5\",\"212.5\",\"212.4\",\"235.3\",\"227.5\",\"233.4\",\"275.9\",\"319.6\",\"249.5\",\"242.3\",\"247.7\",\"249.1\",\"237.5\",\"299.1\",\"297.7\",\"229.4\",\"219.7\",\"203.7\",\"234.6\",\"237.7\",\"287.5\",\"208.4\",\"232.5\",\"236.9\",\"226.4\",\"232.5\",\"236.5\",\"218.0\",\"220.3\",\"242.3\",\"247.7\",\"270.0\",\"236.1\",\"201.3\",\"219.6\",\"235.4\",\"240.1\",\"257.1\",\"298.9\",\"230.2\",\"225.3\",\"232.2\",\"237.5\",\"235.2\",\"247.5\",\"201.7\",\"200.6\",\"244.5\",\"240.2\",\"248.4\",\"230.7\",\"238.9\",\"226.3\",\"225.6\",\"319.2\",\"321.2\",\"229.5\",\"215.3\",\"222.7\",\"226.0\",\"239.1\",\"313.3\",\"328.4\",\"222.0\",\"230.9\",\"226.0\",\"239.2\",\"244.5\",\"233.8\",\"243.7\",\"208.3\",\"232.8\",\"243.5\",\"256.8\",\"323.5\",\"288.8\",\"280.2\",\"205.3\",\"228.2\",\"219.9\",\"240.0\",\"225.5\",\"240.6\",\"245.9\",\"222.3\",\"237.3\",\"249.7\",\"322.3\",\"266.4\",\"217.5\",\"233.1\",\"209.6\",\"228.6\",\"230.4\",\"346.8\",\"248.2\",\"213.5\",\"222.9\",\"233.7\",\"249.8\",\"237.0\",\"232.2\",\"243.8\",\"228.3\",\"248.9\",\"204.7\",\"235.6\",\"201.2\",\"230.6\",\"227.7\",\"277.2\",\"243.6\",\"230.7\",\"203.7\",\"232.9\",\"237.8\",\"294.2\",\"214.8\",\"211.4\",\"224.7\",\"241.7\",\"244.3\",\"270.5\",\"224.0\",\"208.9\",\"248.4\",\"248.9\",\"243.3\",\"294.5\",\"268.3\",\"209.7\",\"232.9\",\"225.0\",\"238.2\",\"246.1\",\"286.8\",\"345.1\",\"247.8\",\"217.6\",\"243.2\",\"243.5\",\"246.4\",\"325.5\",\"270.3\",\"227.3\",\"217.0\",\"215.3\",\"249.9\",\"231.5\",\"264.6\",\"332.9\",\"223.6\",\"241.3\",\"237.8\",\"236.2\",\"245.1\",\"266.8\",\"251.2\",\"204.9\",\"212.4\",\"218.8\",\"236.1\",\"233.2\",\"338.5\",\"336.9\",\"233.0\",\"202.6\",\"223.9\",\"245.9\",\"230.8\",\"269.1\",\"209.8\",\"225.7\",\"227.1\",\"228.6\",\"248.4\",\"257.9\",\"313.0\",\"213.4\",\"216.8\",\"225.6\",\"230.2\",\"231.0\",\"337.6\",\"214.9\",\"214.2\",\"210.0\",\"234.1\",\"247.4\",\"249.3\",\"209.4\",\"200.8\",\"227.6\",\"245.2\",\"277.4\",\"228.4\",\"205.0\",\"202.9\",\"240.1\",\"246.1\",\"289.9\",\"235.0\",\"201.7\",\"214.8\",\"239.0\",\"234.9\",\"328.0\",\"274.6\",\"226.0\",\"231.2\",\"233.6\",\"239.7\",\"241.3\",\"204.0\",\"242.6\",\"203.8\",\"235.2\",\"234.2\",\"294.6\",\"288.1\",\"283.4\",\"229.6\",\"217.9\",\"207.5\",\"202.3\",\"229.2\",\"234.0\",\"251.4\",\"211.0\",\"242.0\",\"230.0\",\"232.2\",\"238.5\",\"320.0\",\"205.4\",\"228.4\",\"248.9\",\"236.6\",\"225.3\",\"349.0\",\"228.8\",\"231.2\",\"205.4\",\"225.6\",\"238.6\",\"334.5\",\"204.3\",\"245.9\",\"219.6\",\"248.4\",\"226.1\",\"249.1\",\"245.0\",\"205.7\",\"225.0\",\"246.1\",\"314.3\",\"207.8\",\"214.6\",\"202.8\",\"230.1\",\"225.9\",\"341.3\",\"294.6\",\"204.3\",\"219.8\",\"239.1\",\"232.8\",\"237.2\",\"203.1\",\"201.4\",\"204.4\",\"244.5\",\"228.5\",\"321.5\",\"345.8\",\"236.1\",\"225.3\",\"231.6\",\"233.9\",\"244.1\",\"335.3\",\"332.8\",\"229.0\",\"221.8\",\"244.4\",\"244.7\",\"243.0\",\"229.7\",\"209.4\",\"244.2\",\"238.2\",\"246.6\",\"218.8\",\"209.9\",\"201.9\",\"245.4\",\"231.2\",\"322.3\",\"232.9\",\"214.2\",\"233.8\",\"243.6\",\"248.3\",\"279.4\",\"298.2\",\"304.2\",\"207.0\",\"252.6\",\"224.9\",\"200.0\",\"208.9\",\"230.1\",\"238.1\",\"237.6\",\"234.7\",\"261.8\",\"231.4\",\"214.8\",\"215.3\",\"239.9\",\"236.0\",\"249.0\",\"211.8\",\"224.6\",\"239.2\",\"226.9\",\"253.0\",\"244.7\",\"209.1\",\"220.3\",\"247.5\",\"250.0\",\"340.8\",\"201.0\",\"216.6\",\"223.8\",\"227.7\",\"245.0\",\"334.9\",\"208.6\",\"217.1\",\"215.4\",\"246.1\",\"238.9\",\"272.9\",\"230.6\",\"200.2\",\"246.4\",\"235.9\",\"225.3\",\"231.2\",\"230.9\",\"210.1\",\"227.4\",\"237.0\",\"290.3\",\"201.0\",\"209.3\",\"226.3\",\"226.7\",\"233.9\",\"220.4\",\"228.6\",\"249.7\",\"245.3\",\"232.4\",\"342.9\",\"287.0\",\"227.4\",\"223.4\",\"248.9\",\"245.9\",\"245.8\",\"308.0\",\"230.3\",\"211.4\",\"219.5\",\"237.3\",\"238.8\",\"313.0\",\"275.6\",\"240.6\",\"226.9\",\"237.1\",\"228.7\",\"240.7\",\"255.2\",\"283.8\",\"207.8\",\"237.9\",\"242.0\",\"247.7\",\"233.3\",\"284.1\",\"214.9\",\"224.2\",\"232.6\",\"226.9\",\"238.1\",\"342.0\",\"316.3\",\"223.3\",\"241.0\",\"227.2\",\"240.1\",\"230.3\",\"203.9\",\"212.2\",\"222.9\",\"237.5\",\"238.4\",\"203.1\",\"205.4\",\"236.6\",\"242.3\",\"227.9\",\"244.8\",\"231.2\",\"226.0\",\"244.2\",\"226.3\",\"336.2\",\"311.9\",\"331.4\",\"304.2\",\"230.2\",\"204.4\",\"218.7\",\"232.6\",\"242.0\",\"344.2\",\"200.2\",\"243.1\",\"237.1\",\"245.4\",\"244.4\",\"224.3\",\"203.7\",\"207.9\",\"241.4\",\"245.2\",\"327.7\",\"216.1\",\"236.9\",\"246.7\",\"233.9\",\"239.8\",\"312.2\",\"283.8\",\"241.3\",\"200.5\",\"212.5\",\"236.7\",\"237.5\",\"298.9\",\"345.3\",\"278.4\",\"338.3\",\"205.4\",\"212.5\",\"245.9\",\"239.7\",\"227.4\",\"269.8\",\"201.5\",\"224.4\",\"235.1\",\"227.9\",\"240.2\",\"209.0\",\"211.2\",\"244.0\",\"229.6\",\"232.2\",\"340.5\",\"270.6\",\"247.3\",\"225.0\",\"223.6\",\"239.1\",\"242.9\",\"269.7\",\"342.5\",\"224.6\",\"245.7\",\"234.7\",\"243.7\",\"239.4\",\"226.3\",\"208.2\",\"242.7\",\"231.7\",\"234.9\",\"252.9\",\"295.0\",\"243.6\",\"207.1\",\"218.1\",\"241.6\",\"237.3\",\"311.4\",\"344.1\",\"246.9\",\"226.4\",\"238.2\",\"240.1\",\"246.2\",\"249.6\",\"231.4\",\"217.6\",\"228.6\",\"239.1\",\"212.7\",\"245.0\",\"200.4\",\"225.3\",\"243.3\",\"227.1\",\"209.1\",\"237.1\",\"247.7\",\"227.0\",\"212.5\",\"202.7\",\"220.1\",\"246.2\",\"227.4\",\"206.5\",\"222.9\",\"249.7\",\"241.5\",\"243.4\",\"327.6\",\"308.3\",\"223.6\",\"236.2\",\"230.9\",\"230.9\",\"230.2\",\"238.2\",\"228.6\",\"229.1\",\"229.7\",\"238.9\",\"202.7\",\"205.3\",\"242.7\",\"236.4\",\"237.2\",\"299.6\",\"217.7\",\"218.5\",\"204.2\",\"234.1\",\"237.1\",\"209.1\",\"249.9\",\"205.6\",\"242.9\",\"225.3\",\"316.6\",\"339.8\",\"240.1\",\"222.0\",\"226.1\",\"242.5\",\"238.6\",\"280.6\",\"273.9\",\"204.1\",\"243.1\",\"220.1\",\"229.1\",\"235.7\",\"217.1\",\"240.4\",\"207.0\",\"229.5\",\"243.0\",\"290.0\",\"237.4\",\"223.2\",\"231.3\",\"233.1\",\"229.4\",\"309.8\",\"338.5\",\"201.1\",\"246.8\",\"245.0\",\"236.9\",\"241.4\",\"271.5\",\"245.2\",\"200.2\",\"234.4\",\"233.2\",\"232.4\",\"302.7\",\"312.5\",\"322.9\",\"268.9\",\"254.3\",\"238.7\",\"239.7\",\"239.6\",\"242.2\",\"241.9\",\"258.6\",\"276.0\",\"337.8\",\"263.5\",\"200.9\",\"261.3\",\"192.3\",\"222.6\",\"247.9\",\"241.8\",\"227.8\",\"230.8\",\"239.0\",\"229.4\",\"211.6\",\"247.6\",\"244.9\",\"332.1\",\"243.5\",\"206.0\",\"224.0\",\"229.5\",\"237.0\",\"274.6\",\"292.4\",\"224.6\",\"237.8\",\"234.3\",\"238.0\",\"249.4\",\"269.2\",\"287.1\",\"218.3\",\"207.8\",\"227.5\",\"232.4\",\"225.1\",\"340.7\",\"213.0\",\"239.9\",\"209.6\",\"226.6\",\"248.5\",\"258.3\",\"337.2\",\"213.8\",\"207.9\",\"231.8\",\"244.9\",\"227.8\",\"282.5\",\"331.4\",\"222.3\",\"224.0\",\"234.3\",\"243.7\",\"230.4\",\"205.0\",\"240.8\",\"229.2\",\"246.7\",\"236.5\",\"343.8\",\"280.4\",\"202.0\",\"200.1\",\"237.7\",\"235.2\",\"236.1\",\"231.7\",\"221.3\",\"208.4\",\"246.5\",\"226.0\",\"282.4\",\"284.3\",\"241.3\",\"201.5\",\"226.8\",\"248.9\",\"235.0\",\"281.7\",\"227.3\",\"246.4\",\"240.0\",\"241.3\",\"246.0\",\"249.6\",\"231.1\",\"214.6\",\"225.9\",\"249.8\",\"327.0\",\"281.0\",\"291.9\",\"244.4\",\"220.8\",\"270.2\",\"210.1\",\"208.2\",\"202.3\",\"232.8\",\"246.8\",\"243.8\",\"231.5\",\"200.4\",\"242.0\",\"231.7\",\"229.7\",\"235.2\",\"324.0\",\"276.6\",\"246.2\",\"209.9\",\"221.2\",\"244.5\",\"241.0\",\"287.2\",\"303.5\",\"214.1\",\"236.5\",\"205.6\",\"240.0\",\"242.7\",\"311.8\",\"285.8\",\"205.6\",\"245.0\",\"249.5\",\"226.2\",\"236.9\",\"267.8\",\"220.6\",\"237.3\",\"223.9\",\"246.3\",\"233.8\",\"252.2\",\"260.0\",\"223.3\",\"226.7\",\"222.2\",\"238.9\",\"243.7\",\"209.5\",\"204.1\",\"234.1\",\"246.1\",\"243.4\",\"247.1\",\"230.0\",\"242.2\",\"247.1\",\"232.0\",\"270.3\",\"231.3\",\"236.9\",\"201.8\",\"235.0\",\"226.8\",\"294.5\",\"230.5\",\"213.3\",\"231.3\",\"242.6\",\"242.1\",\"270.3\",\"253.9\",\"208.0\",\"239.3\",\"244.4\",\"226.9\",\"244.5\",\"317.6\",\"227.4\",\"207.2\",\"234.9\",\"240.7\",\"234.3\",\"340.0\",\"212.3\",\"211.3\",\"221.9\",\"248.6\",\"228.6\",\"278.2\",\"214.5\",\"237.8\",\"226.1\",\"225.5\",\"227.3\",\"280.0\",\"305.1\",\"224.0\",\"247.7\",\"235.4\",\"230.6\",\"228.9\",\"273.5\",\"281.5\",\"239.9\",\"214.0\",\"240.3\",\"236.3\",\"232.5\",\"268.9\",\"285.2\",\"243.9\",\"235.9\",\"213.8\",\"226.9\",\"226.0\",\"343.9\",\"212.6\",\"204.4\",\"249.6\",\"246.1\",\"230.9\",\"344.8\",\"301.0\",\"306.7\",\"282.8\",\"232.6\",\"237.4\",\"210.3\",\"242.7\",\"230.9\",\"257.6\",\"226.0\",\"203.2\",\"204.8\",\"229.7\",\"242.4\",\"202.5\",\"239.1\",\"222.5\",\"236.8\",\"237.7\",\"258.7\",\"322.9\",\"203.8\",\"250.0\",\"218.0\",\"237.2\",\"228.1\",\"247.6\",\"210.3\",\"215.5\",\"245.9\",\"245.6\",\"281.3\",\"330.4\",\"206.3\",\"247.8\",\"241.9\",\"226.2\",\"248.4\",\"319.2\",\"215.4\",\"205.7\",\"228.2\",\"233.6\",\"228.9\",\"231.3\",\"225.4\",\"235.4\",\"243.7\",\"233.5\",\"254.9\",\"327.3\",\"208.3\",\"229.6\",\"216.8\",\"229.4\",\"246.2\",\"291.8\",\"263.2\",\"328.2\",\"279.7\",\"332.6\",\"214.3\",\"205.9\",\"201.2\",\"238.7\",\"219.8\",\"228.7\",\"235.9\",\"207.4\",\"233.0\",\"221.6\",\"243.1\",\"244.6\",\"277.8\",\"321.2\",\"205.8\",\"204.0\",\"247.0\",\"235.1\",\"244.5\",\"326.1\",\"206.8\",\"201.3\",\"232.4\",\"225.6\",\"236.2\",\"225.5\",\"249.1\",\"211.6\",\"246.6\",\"241.7\",\"322.4\",\"316.9\",\"215.5\",\"246.1\",\"240.1\",\"238.1\",\"249.0\",\"325.2\",\"289.8\",\"245.5\",\"207.8\",\"220.4\",\"237.3\",\"230.8\",\"347.9\",\"238.9\",\"242.1\",\"226.0\",\"241.8\",\"233.9\",\"277.6\",\"323.6\",\"245.9\",\"208.9\",\"217.4\",\"238.6\",\"240.7\",\"282.9\",\"223.0\",\"210.1\",\"218.5\",\"229.9\",\"243.3\",\"296.6\",\"287.9\",\"327.8\",\"298.4\",\"204.6\",\"225.0\",\"288.0\",\"228.1\",\"230.6\",\"243.8\",\"240.8\",\"237.9\",\"237.0\",\"229.5\",\"238.4\",\"248.0\",\"237.6\",\"228.4\",\"203.2\",\"239.7\",\"230.9\",\"236.3\",\"303.4\",\"273.8\",\"218.8\",\"228.3\",\"206.9\",\"236.5\",\"232.6\",\"269.8\",\"292.5\",\"308.8\",\"307.6\",\"263.3\",\"207.0\",\"232.3\",\"236.0\",\"229.5\",\"227.9\",\"339.6\",\"273.9\",\"207.9\",\"238.9\",\"230.2\",\"229.1\",\"233.1\",\"294.6\",\"300.7\",\"203.2\",\"203.9\",\"216.6\",\"231.9\",\"244.6\",\"241.7\",\"206.0\",\"248.1\",\"242.9\",\"235.9\",\"228.0\",\"219.8\",\"214.4\",\"234.7\",\"236.7\",\"231.2\",\"217.1\",\"200.8\",\"240.5\",\"249.6\",\"231.7\",\"207.9\",\"232.0\",\"227.9\",\"228.5\",\"213.5\",\"209.8\",\"217.7\",\"236.6\",\"239.7\",\"299.1\",\"233.4\",\"205.0\",\"218.5\",\"235.7\",\"236.9\",\"208.1\",\"223.6\",\"213.4\",\"227.4\",\"235.3\",\"271.0\",\"348.4\",\"231.9\",\"221.7\",\"200.9\",\"229.5\",\"242.7\",\"300.2\",\"230.6\",\"246.7\",\"235.7\",\"236.6\",\"231.3\",\"282.0\",\"336.1\",\"232.3\",\"235.4\",\"229.7\",\"235.7\",\"242.1\",\"332.6\",\"220.1\",\"236.9\",\"248.4\",\"246.7\",\"245.0\",\"266.3\",\"204.6\",\"211.5\",\"239.0\",\"249.1\",\"228.5\",\"311.6\",\"236.8\",\"202.0\",\"235.3\",\"235.0\",\"239.1\",\"320.3\",\"235.0\",\"243.6\",\"208.6\",\"231.4\",\"241.6\",\"280.6\",\"201.6\",\"243.1\",\"218.2\",\"237.5\",\"238.2\",\"265.3\",\"324.1\",\"202.9\",\"244.7\",\"236.6\",\"228.8\",\"229.8\",\"223.0\",\"215.3\",\"230.6\",\"240.4\",\"236.3\",\"296.2\",\"203.7\",\"216.2\",\"203.3\",\"230.0\",\"242.9\",\"308.4\",\"338.6\",\"248.9\",\"216.7\",\"210.7\",\"238.3\",\"244.4\",\"287.2\",\"234.8\",\"208.7\",\"211.6\",\"239.2\",\"249.1\",\"317.1\",\"212.6\",\"226.9\",\"214.1\",\"235.3\",\"237.7\",\"241.0\",\"239.6\",\"200.8\",\"227.7\",\"234.9\",\"316.4\",\"213.7\",\"214.4\",\"244.0\",\"231.2\",\"225.8\",\"222.4\",\"227.5\",\"217.5\",\"236.4\",\"230.7\",\"305.1\",\"248.3\",\"234.7\",\"239.7\",\"236.9\",\"225.7\",\"273.2\",\"217.6\",\"243.1\",\"212.2\",\"246.9\",\"233.4\",\"330.9\",\"248.5\",\"211.6\",\"209.9\",\"225.7\",\"228.0\",\"331.8\",\"310.5\",\"204.4\",\"226.0\",\"207.6\",\"227.7\",\"246.4\",\"293.9\",\"336.8\",\"207.0\",\"244.9\",\"217.3\",\"225.9\",\"240.4\",\"253.6\",\"211.4\",\"204.9\",\"203.7\",\"247.2\",\"229.5\",\"329.4\",\"283.3\",\"224.5\",\"215.8\",\"206.4\",\"245.3\",\"248.6\",\"202.6\",\"244.2\",\"221.6\",\"226.8\",\"229.8\",\"267.5\",\"247.9\",\"216.4\",\"234.1\",\"247.6\",\"235.4\",\"256.4\",\"245.4\",\"249.0\",\"206.1\",\"232.2\",\"242.6\",\"259.7\",\"317.9\",\"238.9\",\"219.5\",\"208.6\",\"229.5\",\"228.5\",\"337.0\",\"323.0\",\"229.7\",\"219.7\",\"229.5\",\"234.0\",\"228.4\",\"258.0\",\"211.1\",\"202.2\",\"237.0\",\"249.9\",\"233.6\",\"312.0\",\"231.0\",\"226.3\",\"206.9\",\"231.9\",\"236.7\",\"275.4\",\"267.2\",\"205.6\",\"230.1\",\"238.9\",\"233.9\",\"233.0\",\"246.7\",\"210.4\",\"206.5\",\"236.7\",\"239.7\",\"256.9\",\"280.9\",\"333.4\",\"253.7\",\"288.7\",\"287.0\",\"192.6\",\"181.7\",\"227.6\",\"217.0\",\"237.2\",\"225.7\",\"249.9\",\"304.4\",\"209.3\",\"243.9\",\"243.8\",\"237.3\",\"249.7\",\"338.8\",\"240.7\",\"216.7\",\"239.5\",\"241.1\",\"245.2\",\"213.1\",\"215.3\",\"247.0\",\"226.5\",\"230.4\",\"201.9\",\"244.9\",\"213.4\",\"249.4\",\"231.6\",\"289.8\",\"245.3\",\"218.9\",\"207.9\",\"243.1\",\"236.5\",\"202.9\",\"219.6\",\"221.8\",\"227.2\",\"241.0\",\"249.6\",\"239.6\",\"233.2\",\"226.6\",\"247.2\",\"294.7\",\"208.6\",\"215.7\",\"248.5\",\"245.2\",\"243.9\",\"336.9\",\"333.0\",\"206.4\",\"235.9\",\"243.8\",\"245.7\",\"248.3\",\"200.7\",\"227.0\",\"245.7\",\"242.6\",\"230.1\",\"339.1\",\"265.7\",\"209.6\",\"234.7\",\"210.6\",\"236.6\",\"232.6\",\"218.1\",\"226.0\",\"221.8\",\"230.5\",\"231.7\",\"257.2\",\"211.0\",\"243.5\",\"216.2\",\"229.3\",\"248.3\",\"299.6\",\"268.7\",\"234.5\",\"212.2\",\"248.9\",\"236.8\",\"231.8\",\"330.3\",\"328.5\",\"234.7\",\"221.9\",\"242.9\",\"240.5\",\"232.8\",\"265.4\",\"235.2\",\"224.4\",\"224.7\",\"233.1\",\"235.6\",\"317.9\",\"208.2\",\"228.3\",\"222.9\",\"244.0\",\"238.6\",\"201.0\",\"236.4\",\"207.3\",\"244.8\",\"227.7\",\"335.1\",\"270.5\",\"206.7\",\"241.7\",\"215.6\",\"236.8\",\"242.5\",\"227.1\",\"224.3\",\"223.2\",\"246.7\",\"228.3\",\"268.0\",\"344.9\",\"300.7\",\"282.9\",\"241.9\",\"243.0\",\"216.9\",\"235.4\",\"219.4\",\"239.2\",\"245.0\",\"231.1\",\"257.4\",\"277.0\",\"230.3\",\"244.3\",\"210.4\",\"236.1\",\"236.8\",\"265.4\",\"234.2\",\"232.8\",\"240.3\",\"227.0\",\"227.0\",\"244.7\",\"223.6\",\"213.8\",\"233.9\",\"234.3\",\"237.4\",\"227.8\",\"210.7\",\"232.9\",\"241.1\",\"342.5\",\"313.9\",\"240.2\",\"243.0\",\"234.4\",\"248.4\",\"232.1\",\"284.1\",\"236.9\",\"212.6\",\"214.2\",\"240.2\",\"241.2\",\"318.4\",\"340.6\",\"241.9\",\"231.7\",\"227.7\",\"241.5\",\"241.0\",\"314.1\",\"316.7\",\"223.1\",\"202.7\",\"221.5\",\"229.6\",\"235.8\",\"218.6\",\"235.0\",\"200.9\",\"244.0\",\"241.3\",\"233.3\",\"237.6\",\"228.8\",\"232.7\",\"246.1\",\"292.0\",\"312.7\",\"243.4\",\"244.5\",\"238.4\",\"245.2\",\"229.1\",\"249.3\",\"212.3\",\"226.3\",\"241.7\",\"236.9\",\"332.0\",\"244.2\",\"232.2\",\"216.6\",\"235.9\",\"241.9\",\"282.8\",\"278.4\",\"211.0\",\"209.8\",\"232.9\",\"241.4\",\"236.1\",\"272.9\",\"265.8\",\"306.3\",\"278.2\",\"251.7\",\"223.1\",\"214.4\",\"206.4\",\"213.2\",\"206.8\",\"249.9\",\"236.6\",\"247.3\",\"235.2\",\"336.2\",\"217.9\",\"234.0\",\"209.8\",\"245.5\",\"236.9\",\"275.4\",\"250.4\",\"222.2\",\"243.4\",\"247.4\",\"245.2\",\"245.2\",\"277.6\",\"220.6\",\"243.8\",\"248.7\",\"243.8\",\"225.3\",\"223.5\",\"227.1\",\"204.8\",\"246.8\",\"225.3\",\"328.4\",\"316.7\",\"213.2\",\"210.7\",\"213.2\",\"238.3\",\"228.0\",\"301.6\",\"347.9\",\"285.2\",\"249.0\",\"237.0\",\"243.4\",\"198.3\",\"196.8\",\"226.7\",\"234.3\",\"245.1\",\"247.4\",\"238.0\",\"329.8\",\"215.5\",\"236.9\",\"244.6\",\"227.6\",\"236.4\",\"233.7\",\"221.1\",\"245.3\",\"243.4\",\"230.9\",\"256.2\",\"210.8\",\"241.1\",\"203.6\",\"247.4\",\"234.5\",\"276.8\",\"207.0\",\"231.9\",\"201.6\",\"234.2\",\"246.4\",\"342.3\",\"219.9\",\"245.4\",\"234.1\",\"233.7\",\"233.4\",\"307.6\",\"340.5\",\"247.0\",\"231.0\",\"214.1\",\"232.9\",\"244.6\",\"307.2\",\"309.4\",\"216.6\",\"221.7\",\"243.1\",\"248.9\",\"227.3\",\"241.6\",\"216.4\",\"217.0\",\"226.0\",\"246.3\",\"311.2\",\"249.2\",\"213.8\",\"242.9\",\"229.2\",\"229.4\",\"308.8\",\"220.4\",\"216.1\",\"200.9\",\"243.6\",\"239.0\",\"316.5\",\"338.0\",\"236.4\",\"236.1\",\"248.2\",\"225.5\",\"229.7\",\"266.6\",\"312.4\",\"201.3\",\"216.5\",\"238.6\",\"239.5\",\"245.9\",\"339.2\",\"300.9\",\"216.1\",\"222.7\",\"247.3\",\"244.9\",\"249.9\",\"219.6\",\"229.8\",\"221.4\",\"235.9\",\"238.0\",\"218.2\",\"219.5\",\"242.5\",\"225.3\",\"237.3\",\"296.4\",\"310.3\",\"224.1\",\"201.5\",\"222.9\",\"234.1\",\"225.3\",\"203.3\",\"217.5\",\"241.2\",\"236.5\",\"249.4\",\"349.8\",\"259.8\",\"244.3\",\"233.3\",\"229.2\",\"237.9\",\"249.1\",\"278.2\",\"262.9\",\"201.1\",\"225.6\",\"205.9\",\"244.7\",\"248.3\",\"328.8\",\"265.4\",\"208.3\",\"247.8\",\"226.4\",\"229.2\",\"242.6\",\"327.4\",\"237.1\",\"237.7\",\"221.9\",\"246.0\",\"247.0\",\"321.9\",\"251.8\",\"346.2\",\"230.0\",\"248.0\",\"241.7\",\"245.3\",\"231.1\",\"214.9\",\"211.8\",\"235.1\",\"241.6\",\"247.0\",\"348.9\",\"337.6\",\"205.2\",\"203.6\",\"216.5\",\"238.7\",\"227.6\",\"265.6\",\"257.4\",\"214.9\",\"246.0\",\"223.2\",\"241.0\",\"233.2\",\"265.3\",\"215.6\",\"209.8\",\"242.8\",\"242.8\",\"243.7\",\"347.1\",\"223.2\",\"224.2\",\"214.4\",\"232.4\",\"244.1\",\"301.9\",\"333.6\",\"234.7\",\"242.6\",\"240.1\",\"235.5\",\"230.7\",\"238.5\",\"245.1\",\"218.3\",\"231.3\",\"247.9\",\"312.1\",\"325.7\",\"214.6\",\"221.6\",\"244.2\",\"243.2\",\"245.4\",\"262.8\",\"230.1\",\"210.1\",\"201.9\",\"247.4\",\"242.8\",\"308.5\",\"216.8\",\"245.2\",\"229.0\",\"229.8\",\"234.8\",\"337.3\",\"227.5\",\"210.3\",\"212.3\",\"235.7\",\"236.1\",\"344.9\",\"223.0\",\"246.4\",\"228.1\",\"248.7\",\"241.7\",\"316.0\",\"204.3\",\"237.7\",\"238.4\",\"235.0\",\"232.2\",\"229.3\",\"214.9\",\"246.5\",\"243.1\",\"244.3\",\"286.4\",\"219.9\",\"215.4\",\"226.2\",\"227.4\",\"244.8\",\"329.9\",\"200.4\",\"237.2\",\"240.0\",\"247.7\",\"233.4\",\"264.0\",\"266.7\",\"203.5\",\"217.8\",\"227.6\",\"243.6\",\"230.5\",\"248.7\",\"213.3\",\"203.2\",\"232.7\",\"236.6\",\"302.9\",\"239.3\",\"242.8\",\"239.2\",\"235.6\",\"235.9\",\"346.6\",\"338.6\",\"230.2\",\"241.9\",\"242.5\",\"243.7\",\"248.4\",\"308.6\",\"272.3\",\"208.1\",\"234.4\",\"203.9\",\"235.7\",\"225.3\",\"342.9\",\"309.7\",\"227.5\",\"236.4\",\"215.2\",\"242.7\",\"240.0\",\"264.3\",\"267.4\",\"217.4\",\"241.0\",\"200.4\",\"240.1\",\"236.2\",\"311.1\",\"221.3\",\"208.9\",\"224.2\",\"229.2\",\"229.0\",\"258.1\",\"220.9\",\"209.4\",\"214.8\",\"234.5\",\"240.6\",\"239.9\",\"214.4\",\"241.5\",\"240.2\",\"245.5\",\"322.7\",\"211.4\",\"234.5\",\"238.5\",\"234.4\",\"230.3\",\"344.2\",\"219.1\",\"220.3\",\"226.3\",\"234.7\",\"238.6\",\"306.4\",\"218.1\",\"203.4\",\"242.2\",\"247.5\",\"248.6\",\"343.1\",\"306.8\",\"240.3\",\"207.1\",\"237.3\",\"233.6\",\"244.8\",\"228.2\",\"234.8\",\"213.6\",\"237.0\",\"238.8\",\"243.5\",\"232.6\",\"209.9\",\"248.4\",\"230.5\",\"287.2\",\"259.7\",\"243.6\",\"212.8\",\"217.0\",\"230.2\",\"232.1\",\"222.0\",\"217.7\",\"234.2\",\"246.4\",\"238.8\",\"217.1\",\"243.6\",\"212.0\",\"240.3\",\"242.0\",\"213.0\",\"215.8\",\"237.1\",\"237.0\",\"225.2\",\"246.2\",\"218.8\",\"205.0\",\"245.6\",\"247.0\",\"306.3\",\"232.7\",\"231.7\",\"204.8\",\"236.1\",\"234.9\",\"251.8\",\"249.4\",\"248.3\",\"247.6\",\"242.0\",\"243.4\",\"222.2\",\"237.3\",\"245.9\",\"241.5\",\"233.4\",\"349.3\",\"251.1\",\"236.5\",\"242.9\",\"220.9\",\"246.7\",\"238.1\",\"344.7\",\"206.1\",\"215.5\",\"219.0\",\"228.5\",\"231.6\",\"280.2\",\"210.6\",\"236.5\",\"212.9\",\"236.0\",\"248.4\",\"308.2\",\"271.3\",\"259.3\",\"264.9\",\"300.1\",\"243.1\",\"206.5\",\"206.6\",\"239.7\",\"233.4\",\"280.8\",\"262.6\",\"338.7\",\"259.3\",\"338.2\",\"216.5\",\"201.7\",\"214.9\",\"235.9\",\"247.2\",\"212.0\",\"203.7\",\"223.8\",\"246.5\",\"247.0\",\"283.1\",\"215.1\",\"224.8\",\"204.7\",\"229.1\",\"236.4\",\"249.1\",\"206.8\",\"216.1\",\"243.6\",\"249.8\",\"254.0\",\"306.0\",\"248.0\",\"219.6\",\"236.1\",\"230.3\",\"229.8\",\"289.1\",\"334.0\",\"325.6\",\"284.9\",\"241.1\",\"272.3\",\"181.9\",\"205.0\",\"235.6\",\"215.2\",\"204.7\",\"235.3\",\"240.2\",\"322.0\",\"244.1\",\"231.2\",\"241.0\",\"225.1\",\"226.1\",\"241.1\",\"220.0\",\"230.5\",\"242.4\",\"228.6\",\"222.5\",\"232.6\",\"230.7\",\"236.1\",\"226.1\",\"299.8\",\"255.9\",\"219.4\",\"235.2\",\"228.6\",\"248.3\",\"225.7\",\"327.5\",\"227.4\",\"216.9\",\"249.0\",\"226.4\",\"230.3\",\"295.3\",\"206.3\",\"247.9\",\"208.2\",\"227.2\",\"225.7\",\"214.8\",\"233.2\",\"203.2\",\"242.9\",\"232.7\",\"240.2\",\"205.2\",\"223.3\",\"249.5\",\"233.7\",\"296.0\",\"331.2\",\"203.1\",\"248.4\",\"248.9\",\"239.3\",\"228.0\",\"222.7\",\"211.5\",\"229.5\",\"233.3\",\"248.4\",\"315.5\",\"234.7\",\"217.6\",\"205.9\",\"249.3\",\"239.2\",\"235.9\",\"220.7\",\"232.3\",\"241.6\",\"243.9\",\"292.9\",\"307.4\",\"219.6\",\"220.7\",\"223.7\",\"231.2\",\"249.8\",\"321.7\",\"330.6\",\"238.2\",\"239.3\",\"233.6\",\"238.9\",\"239.6\",\"216.2\",\"209.7\",\"219.7\",\"249.4\",\"245.8\",\"328.7\",\"318.2\",\"236.3\",\"201.4\",\"214.8\",\"246.5\",\"242.4\",\"265.3\",\"204.6\",\"212.6\",\"205.1\",\"231.1\",\"241.4\",\"231.9\",\"245.4\",\"224.5\",\"233.0\",\"238.0\",\"298.8\",\"231.9\",\"204.9\",\"232.1\",\"245.8\",\"228.6\",\"283.1\",\"204.3\",\"238.0\",\"222.4\",\"230.1\",\"247.9\",\"224.6\",\"206.4\",\"221.4\",\"230.9\",\"243.9\",\"237.9\",\"204.0\",\"204.2\",\"245.8\",\"240.1\",\"280.9\",\"299.2\",\"208.7\",\"208.8\",\"219.0\",\"235.6\",\"248.6\",\"302.4\",\"257.5\",\"229.7\",\"207.0\",\"214.6\",\"225.6\",\"238.8\",\"348.8\",\"222.0\",\"223.8\",\"222.1\",\"240.6\",\"236.2\",\"200.9\",\"242.0\",\"234.1\",\"245.8\",\"239.2\",\"322.3\",\"288.3\",\"234.5\",\"207.7\",\"240.0\",\"225.7\",\"226.3\",\"222.2\",\"236.3\",\"218.7\",\"244.7\",\"246.9\",\"218.0\",\"214.5\",\"206.6\",\"230.0\",\"248.2\",\"288.3\",\"306.6\",\"204.5\",\"215.4\",\"233.3\",\"240.3\",\"233.5\",\"287.9\",\"207.8\",\"209.8\",\"234.6\",\"230.2\",\"234.8\",\"338.3\",\"235.7\",\"216.4\",\"222.2\",\"228.3\",\"229.1\",\"335.6\",\"273.7\",\"307.5\",\"257.9\",\"337.9\",\"202.5\",\"201.6\",\"221.2\",\"226.7\",\"228.7\",\"227.0\",\"218.2\",\"231.3\",\"234.2\",\"247.7\",\"231.5\",\"207.1\",\"240.2\",\"204.0\",\"226.1\",\"247.6\",\"231.9\",\"247.9\",\"234.3\",\"236.0\",\"247.3\",\"332.4\",\"216.1\",\"229.9\",\"211.9\",\"226.7\",\"228.4\",\"278.9\",\"225.5\",\"206.8\",\"245.1\",\"244.8\",\"243.2\",\"241.2\",\"232.7\",\"221.3\",\"241.6\",\"232.8\",\"207.4\",\"207.6\",\"200.6\",\"233.8\",\"242.3\",\"310.5\",\"305.3\",\"236.4\",\"248.7\",\"206.1\",\"234.4\",\"244.9\",\"225.9\",\"218.2\",\"217.0\",\"240.9\",\"225.3\",\"306.3\",\"345.6\",\"296.0\",\"311.4\",\"219.0\",\"212.3\",\"216.1\",\"215.8\",\"230.5\",\"234.7\",\"236.2\",\"242.5\",\"302.9\",\"334.3\",\"221.3\",\"246.8\",\"221.3\",\"228.3\",\"225.9\",\"326.0\",\"279.8\",\"231.4\",\"230.1\",\"224.1\",\"238.1\",\"247.5\",\"346.3\",\"322.3\",\"244.9\",\"206.8\",\"223.9\",\"235.1\",\"243.2\",\"245.2\",\"240.4\",\"238.6\",\"231.0\",\"234.6\",\"215.3\",\"208.2\",\"245.4\",\"231.8\",\"247.8\",\"284.7\",\"236.0\",\"248.2\",\"236.7\",\"247.9\",\"244.4\",\"348.6\",\"289.7\",\"306.5\",\"208.7\",\"241.0\",\"261.3\",\"207.6\",\"208.1\",\"182.6\",\"223.5\",\"221.9\",\"216.0\",\"225.1\",\"243.7\",\"255.8\",\"237.6\",\"240.6\",\"213.5\",\"244.9\",\"238.1\",\"318.0\",\"287.8\",\"209.8\",\"250.0\",\"243.2\",\"247.3\",\"248.9\",\"274.0\",\"289.7\",\"209.6\",\"234.0\",\"200.5\",\"247.8\",\"230.3\",\"255.3\",\"213.5\",\"244.8\",\"207.0\",\"240.7\",\"247.6\",\"246.6\",\"219.2\",\"243.4\",\"230.7\",\"235.3\",\"307.3\",\"241.6\",\"232.6\",\"200.1\",\"243.1\",\"230.4\",\"349.5\",\"204.9\",\"243.8\",\"220.6\",\"225.4\",\"230.2\",\"267.5\",\"239.1\",\"233.7\",\"224.7\",\"243.3\",\"243.1\",\"302.9\",\"246.4\",\"249.6\",\"201.6\",\"248.1\",\"229.3\",\"211.2\",\"219.2\",\"244.3\",\"231.4\",\"242.6\",\"313.1\",\"212.6\",\"247.2\",\"212.7\",\"232.5\",\"242.9\",\"340.7\",\"210.6\",\"201.3\",\"240.0\",\"240.0\",\"232.3\",\"349.0\",\"281.6\",\"203.3\",\"213.4\",\"244.5\",\"243.0\",\"236.2\",\"340.6\",\"234.5\",\"202.2\",\"211.6\",\"229.8\",\"226.8\",\"273.8\",\"326.5\",\"266.2\",\"340.5\",\"275.5\",\"233.5\",\"204.5\",\"192.1\",\"213.8\",\"203.4\",\"247.6\",\"248.7\",\"248.8\",\"270.4\",\"321.9\",\"299.7\",\"253.6\",\"200.0\",\"256.3\",\"214.3\",\"192.1\",\"194.7\",\"231.2\",\"205.0\",\"233.5\",\"245.9\",\"228.2\",\"273.5\",\"331.6\",\"247.1\",\"245.3\",\"247.0\",\"233.1\",\"234.0\",\"274.1\",\"337.0\",\"301.6\",\"278.7\",\"219.0\",\"205.9\",\"228.2\",\"226.5\",\"226.5\",\"243.6\",\"288.3\",\"330.9\",\"236.6\",\"228.8\",\"250.0\",\"230.4\",\"245.1\",\"306.5\",\"247.8\",\"217.2\",\"216.6\",\"234.3\",\"227.7\",\"258.6\",\"251.2\",\"233.5\",\"221.0\",\"235.1\",\"232.6\",\"243.8\",\"279.1\",\"233.5\",\"202.8\",\"206.8\",\"241.5\",\"226.3\",\"341.1\",\"318.6\",\"256.9\",\"342.6\",\"211.8\",\"246.8\",\"216.6\",\"249.4\",\"248.1\",\"348.8\",\"285.3\",\"299.4\",\"299.6\",\"295.1\",\"296.4\",\"232.0\",\"237.6\",\"203.7\",\"227.1\",\"247.7\",\"261.4\",\"339.8\",\"349.3\",\"230.4\",\"232.8\",\"248.1\",\"216.5\",\"186.6\",\"216.5\",\"234.7\",\"241.4\",\"227.3\",\"236.9\",\"296.3\",\"317.9\",\"225.2\",\"232.5\",\"200.2\",\"242.7\",\"226.5\",\"242.6\",\"236.0\",\"249.2\",\"232.8\",\"247.6\",\"341.8\",\"209.7\",\"242.7\",\"224.3\",\"245.0\",\"246.4\",\"274.4\",\"228.7\",\"215.7\",\"247.9\",\"240.3\",\"233.4\",\"311.1\",\"226.2\",\"233.5\",\"224.3\",\"235.6\",\"227.7\",\"303.9\",\"274.8\",\"213.2\",\"240.3\",\"226.2\",\"239.1\",\"240.8\",\"254.3\",\"238.5\",\"246.5\",\"207.9\",\"244.8\",\"247.7\",\"299.0\",\"215.7\",\"226.8\",\"244.4\",\"238.1\",\"238.6\",\"270.7\",\"224.5\",\"233.3\",\"228.5\",\"226.9\",\"243.7\",\"288.4\",\"261.6\",\"203.3\",\"216.4\",\"209.4\",\"239.9\",\"249.9\",\"215.2\",\"205.8\",\"208.9\",\"239.7\",\"230.2\",\"211.9\",\"212.0\",\"245.9\",\"228.4\",\"247.6\",\"234.9\",\"221.7\",\"227.5\",\"232.8\",\"234.0\",\"333.3\",\"244.6\",\"202.9\",\"222.0\",\"240.7\",\"237.8\",\"261.0\",\"236.7\",\"224.5\",\"225.9\",\"234.0\",\"234.4\",\"329.5\",\"246.9\",\"228.4\",\"228.7\",\"226.1\",\"247.5\",\"238.3\",\"209.6\",\"234.5\",\"235.2\",\"242.7\",\"238.2\",\"222.4\",\"227.5\",\"229.7\",\"232.5\",\"292.4\",\"339.8\",\"246.5\",\"229.6\",\"219.8\",\"228.9\",\"243.3\",\"251.7\",\"305.0\",\"242.4\",\"224.2\",\"201.6\",\"243.7\",\"242.1\",\"272.0\",\"300.9\",\"206.6\",\"201.0\",\"247.6\",\"227.4\",\"242.7\",\"201.1\",\"202.6\",\"243.2\",\"233.2\",\"225.3\",\"275.0\",\"310.3\",\"213.9\",\"241.2\",\"228.8\",\"225.9\",\"245.7\",\"303.0\",\"333.3\",\"303.8\",\"210.4\",\"226.5\",\"241.6\",\"230.6\",\"240.5\",\"326.2\",\"234.6\",\"214.1\",\"238.9\",\"232.5\",\"249.3\",\"216.6\",\"234.2\",\"237.6\",\"234.6\",\"242.9\",\"300.7\",\"249.9\",\"221.1\",\"242.4\",\"226.2\",\"236.4\",\"333.7\",\"223.5\",\"225.6\",\"204.6\",\"225.5\",\"231.8\",\"347.3\",\"346.3\",\"222.3\",\"211.7\",\"234.4\",\"243.9\",\"230.1\",\"240.0\",\"205.0\",\"237.3\",\"226.1\",\"230.4\",\"251.8\",\"244.8\",\"207.5\",\"226.5\",\"249.0\",\"228.7\",\"205.2\",\"242.9\",\"209.7\",\"228.4\",\"236.6\",\"256.8\",\"324.2\",\"200.2\",\"204.8\",\"249.3\",\"249.1\",\"248.9\",\"242.5\",\"215.2\",\"214.9\",\"248.9\",\"249.7\",\"312.1\",\"316.8\",\"223.9\",\"205.4\",\"218.0\",\"240.0\",\"234.9\",\"295.7\",\"303.3\",\"206.6\",\"249.1\",\"240.5\",\"230.2\",\"242.8\",\"276.4\",\"205.3\",\"240.2\",\"224.3\",\"243.7\",\"227.2\",\"294.1\",\"330.1\",\"223.8\",\"228.1\",\"210.9\",\"225.4\",\"238.7\",\"337.8\",\"296.1\",\"211.9\",\"211.4\",\"234.9\",\"247.5\",\"240.2\",\"334.7\",\"264.6\",\"205.3\",\"229.5\",\"230.7\",\"232.5\",\"228.9\",\"329.9\",\"312.2\",\"242.2\",\"240.6\",\"244.7\",\"230.7\",\"232.7\",\"278.1\",\"220.9\",\"223.3\",\"200.3\",\"237.5\",\"240.9\",\"203.9\",\"248.2\",\"248.3\",\"235.4\",\"230.6\",\"212.1\",\"232.1\",\"240.2\",\"229.9\",\"226.5\",\"321.3\",\"286.3\",\"240.0\",\"246.2\",\"235.5\",\"250.0\",\"234.9\",\"327.1\",\"329.2\",\"206.0\",\"242.2\",\"214.7\",\"240.9\",\"237.2\",\"277.4\",\"277.9\",\"243.1\",\"200.1\",\"213.4\",\"225.6\",\"227.6\",\"239.7\",\"240.2\",\"204.2\",\"240.9\",\"247.6\",\"314.0\",\"265.6\",\"243.0\",\"218.2\",\"214.5\",\"234.6\",\"232.6\",\"221.7\",\"217.0\",\"225.4\",\"240.6\",\"238.9\",\"322.3\",\"204.2\",\"233.6\",\"232.7\",\"230.3\",\"238.2\",\"217.4\",\"236.2\",\"220.5\",\"228.7\",\"226.1\",\"283.9\",\"340.0\",\"202.8\",\"225.9\",\"244.1\",\"229.4\",\"232.0\",\"259.9\",\"238.2\",\"227.9\",\"223.9\",\"226.0\",\"250.0\",\"298.4\",\"297.6\",\"225.3\",\"207.1\",\"243.0\",\"239.4\",\"230.8\",\"229.6\",\"246.1\",\"200.6\",\"235.5\",\"232.8\",\"221.9\",\"210.1\",\"228.5\",\"228.0\",\"245.3\",\"341.6\",\"234.5\",\"212.7\",\"203.5\",\"230.0\",\"236.7\",\"296.7\",\"215.9\",\"207.3\",\"243.5\",\"231.4\",\"227.3\",\"313.1\",\"263.8\",\"200.1\",\"224.0\",\"222.3\",\"246.0\",\"230.2\",\"316.6\",\"254.5\",\"235.3\",\"234.3\",\"227.0\",\"232.6\",\"228.4\",\"278.2\",\"275.8\",\"258.7\",\"236.6\",\"287.6\",\"241.5\",\"184.7\",\"187.8\",\"225.1\",\"230.0\",\"202.3\",\"227.2\",\"229.6\",\"259.9\",\"200.4\",\"226.2\",\"205.6\",\"242.5\",\"241.4\",\"343.7\",\"303.6\",\"237.9\",\"210.3\",\"221.4\",\"236.2\",\"229.2\",\"329.0\",\"238.2\",\"216.5\",\"216.8\",\"228.8\",\"246.1\",\"257.9\",\"316.2\",\"237.9\",\"240.0\",\"248.4\",\"248.1\",\"249.6\",\"291.0\",\"205.0\",\"204.2\",\"217.9\",\"241.5\",\"241.4\",\"304.2\",\"247.6\",\"212.9\",\"238.7\",\"244.0\",\"236.1\",\"304.5\",\"248.1\",\"216.7\",\"202.6\",\"234.7\",\"241.2\",\"312.0\",\"243.9\",\"234.9\",\"217.4\",\"236.6\",\"247.7\",\"270.5\",\"295.7\",\"308.3\",\"300.0\",\"200.2\",\"226.4\",\"217.8\",\"209.9\",\"247.1\",\"241.7\",\"282.6\",\"321.3\",\"228.0\",\"202.7\",\"216.5\",\"243.9\",\"231.1\",\"332.0\",\"248.5\",\"249.4\",\"234.9\",\"226.6\",\"237.9\",\"339.5\",\"231.2\",\"228.4\",\"242.6\",\"243.1\",\"246.2\",\"283.1\",\"212.7\",\"234.7\",\"242.6\",\"225.6\",\"230.7\",\"285.1\",\"238.7\",\"235.1\",\"231.9\",\"243.1\",\"232.4\",\"342.8\",\"223.9\",\"221.4\",\"230.5\",\"228.0\",\"233.6\",\"211.5\",\"225.2\",\"245.7\",\"230.8\",\"248.3\",\"247.6\",\"247.9\",\"210.2\",\"247.5\",\"229.6\",\"270.2\",\"310.9\",\"222.4\",\"207.1\",\"220.3\",\"241.2\",\"248.8\",\"346.1\",\"319.0\",\"212.1\",\"242.1\",\"220.6\",\"233.4\",\"226.2\",\"293.8\",\"304.4\",\"209.3\",\"202.6\",\"209.1\",\"230.5\",\"232.7\",\"312.3\",\"206.0\",\"229.6\",\"242.0\",\"231.0\",\"246.1\",\"317.0\",\"209.6\",\"212.6\",\"230.6\",\"244.9\",\"233.6\",\"325.6\",\"263.8\",\"244.9\",\"232.4\",\"244.8\",\"226.0\",\"225.4\",\"240.4\",\"203.9\",\"204.7\",\"244.3\",\"243.1\",\"332.8\",\"231.3\",\"238.0\",\"234.2\",\"244.3\",\"234.4\",\"207.5\",\"205.4\",\"219.1\",\"239.7\",\"237.8\",\"293.7\",\"349.7\",\"246.6\",\"205.1\",\"238.5\",\"228.6\",\"247.5\",\"269.2\",\"296.4\",\"244.8\",\"248.8\",\"219.5\",\"234.0\",\"225.8\",\"296.4\",\"244.0\",\"238.6\",\"235.1\",\"238.6\",\"233.6\",\"258.8\",\"295.9\",\"212.3\",\"213.4\",\"229.1\",\"239.2\",\"235.2\",\"290.1\",\"287.8\",\"208.0\",\"225.2\",\"223.7\",\"233.5\",\"232.5\",\"312.4\",\"280.7\",\"210.1\",\"229.5\",\"234.0\",\"232.3\",\"228.9\",\"214.3\",\"226.1\",\"240.8\",\"248.9\",\"243.0\",\"349.6\",\"253.2\",\"285.3\",\"281.1\",\"210.1\",\"286.8\",\"253.2\",\"211.4\",\"213.3\",\"210.2\",\"220.3\",\"226.1\",\"241.8\",\"263.3\",\"336.7\",\"239.5\",\"201.4\",\"230.3\",\"235.8\",\"225.9\",\"315.7\",\"207.8\",\"202.7\",\"233.1\",\"233.5\",\"247.5\",\"283.4\",\"245.1\",\"228.0\",\"241.8\",\"234.5\",\"244.1\",\"337.3\",\"327.4\",\"201.7\",\"244.4\",\"201.1\",\"240.7\",\"234.2\",\"312.9\",\"349.8\",\"252.8\",\"214.8\",\"292.9\",\"260.8\",\"213.9\",\"206.2\",\"194.3\",\"216.0\",\"239.2\",\"240.6\",\"244.3\",\"230.5\",\"295.1\",\"284.0\",\"235.7\",\"203.6\",\"230.0\",\"230.2\",\"243.4\",\"208.0\",\"225.9\",\"240.1\",\"229.3\",\"228.1\",\"333.1\",\"263.5\",\"236.5\",\"221.6\",\"235.7\",\"240.0\",\"240.4\",\"302.5\",\"240.5\",\"209.3\",\"218.0\",\"230.6\",\"249.0\",\"289.5\",\"317.9\",\"209.0\",\"231.6\",\"240.8\",\"231.6\",\"242.5\",\"331.0\",\"302.4\",\"227.5\",\"234.9\",\"249.3\",\"235.7\",\"246.5\",\"266.4\",\"260.8\",\"207.2\",\"221.0\",\"232.5\",\"226.0\",\"237.5\",\"287.6\",\"205.7\",\"225.8\",\"213.9\",\"248.6\",\"247.8\",\"240.9\",\"229.7\",\"232.0\",\"244.6\",\"236.4\",\"218.2\",\"230.5\",\"241.4\",\"242.0\",\"241.2\",\"283.7\",\"318.0\",\"230.8\",\"204.9\",\"213.9\",\"244.2\",\"240.6\",\"245.7\",\"239.6\",\"241.9\",\"248.7\",\"243.1\",\"201.6\",\"216.1\",\"244.6\",\"231.1\",\"243.9\",\"324.8\",\"200.3\",\"221.1\",\"214.5\",\"238.6\",\"243.2\",\"203.4\",\"202.8\",\"208.6\",\"247.8\",\"241.0\",\"205.7\",\"222.9\",\"207.0\",\"237.8\",\"244.9\",\"295.7\",\"209.0\",\"244.1\",\"218.6\",\"235.8\",\"239.4\",\"336.4\",\"236.9\",\"224.5\",\"207.0\",\"230.7\",\"244.5\",\"209.4\",\"240.6\",\"200.7\",\"240.5\",\"242.4\",\"275.0\",\"315.6\",\"204.8\",\"203.0\",\"219.5\",\"246.3\",\"229.5\",\"304.1\",\"311.7\",\"223.4\",\"246.9\",\"238.6\",\"228.6\",\"228.6\",\"303.8\",\"259.5\",\"222.0\",\"221.5\",\"222.6\",\"239.9\",\"228.7\",\"216.0\",\"226.6\",\"213.9\",\"238.9\",\"234.2\",\"217.5\",\"236.4\",\"206.8\",\"245.2\",\"225.7\",\"264.4\",\"216.7\",\"232.3\",\"235.4\",\"234.2\",\"227.7\",\"227.8\",\"211.6\",\"212.0\",\"231.9\",\"234.4\",\"349.6\",\"308.8\",\"237.4\",\"230.6\",\"206.1\",\"249.7\",\"237.2\",\"267.7\",\"334.3\",\"224.7\",\"232.4\",\"244.9\",\"248.0\",\"247.5\",\"231.0\",\"205.8\",\"216.4\",\"234.0\",\"229.6\",\"207.8\",\"220.7\",\"210.8\",\"231.4\",\"225.1\",\"320.6\",\"219.8\",\"243.9\",\"231.7\",\"235.4\",\"228.2\",\"315.3\",\"288.2\",\"246.0\",\"226.0\",\"208.8\",\"230.5\",\"245.2\",\"226.4\",\"242.4\",\"224.7\",\"238.3\",\"228.9\",\"304.8\",\"265.0\",\"220.1\",\"230.3\",\"240.1\",\"226.2\",\"233.4\",\"241.9\",\"225.0\",\"207.5\",\"249.7\",\"233.8\",\"233.5\",\"248.8\",\"204.3\",\"237.9\",\"230.1\",\"282.2\",\"228.7\",\"200.9\",\"244.6\",\"244.8\",\"243.8\",\"264.6\",\"208.8\",\"232.2\",\"244.4\",\"226.4\",\"248.1\",\"310.2\",\"281.4\",\"242.0\",\"217.6\",\"201.3\",\"250.0\",\"243.3\",\"255.9\",\"224.5\",\"234.7\",\"203.2\",\"233.8\",\"247.7\",\"278.0\",\"283.9\",\"283.4\",\"263.6\",\"231.3\",\"279.8\",\"191.4\",\"241.2\",\"202.0\",\"216.4\",\"241.9\",\"248.9\",\"267.8\",\"232.4\",\"220.1\",\"233.2\",\"227.4\",\"240.3\",\"334.0\",\"256.6\",\"234.5\",\"232.3\",\"241.2\",\"231.5\",\"230.6\",\"303.5\",\"272.5\",\"231.9\",\"207.9\",\"233.1\",\"249.3\",\"226.6\",\"235.3\",\"241.6\",\"248.1\",\"229.0\",\"227.5\",\"241.5\",\"204.7\",\"208.0\",\"230.2\",\"225.4\",\"340.0\",\"294.7\",\"235.9\",\"201.0\",\"231.4\",\"243.2\",\"248.4\",\"309.1\",\"308.5\",\"248.3\",\"229.5\",\"216.6\",\"234.5\",\"231.4\",\"307.8\",\"224.1\",\"224.5\",\"220.6\",\"239.9\",\"225.9\",\"250.6\",\"282.1\",\"232.4\",\"238.4\",\"216.6\",\"232.2\",\"247.5\",\"316.9\",\"299.8\",\"240.4\",\"230.5\",\"244.6\",\"227.9\",\"247.2\",\"273.0\",\"207.1\",\"212.4\",\"221.5\",\"237.7\",\"241.0\",\"295.1\",\"276.1\",\"319.4\",\"317.9\",\"292.4\",\"211.9\",\"201.8\",\"203.0\",\"205.6\",\"243.7\",\"216.3\",\"228.8\",\"226.8\",\"225.4\",\"267.7\",\"330.3\",\"210.8\",\"244.1\",\"244.7\",\"247.7\",\"244.9\",\"300.4\",\"264.6\",\"226.6\",\"245.2\",\"235.1\",\"226.0\",\"245.3\",\"244.0\",\"210.6\",\"226.7\",\"248.3\",\"242.9\",\"247.0\",\"230.9\",\"207.8\",\"245.4\",\"243.2\",\"244.4\",\"205.9\",\"225.3\",\"249.8\",\"237.5\",\"200.5\",\"246.0\",\"205.7\",\"247.9\",\"231.4\",\"291.5\",\"223.7\",\"200.8\",\"218.1\",\"248.9\",\"246.7\",\"253.7\",\"320.0\",\"285.4\",\"217.0\",\"252.5\",\"200.7\",\"216.9\",\"219.3\",\"180.7\",\"238.8\",\"204.7\",\"240.6\",\"230.4\",\"230.9\",\"283.0\",\"323.0\",\"235.7\",\"230.3\",\"216.6\",\"234.9\",\"245.1\",\"233.6\",\"232.0\",\"229.6\",\"241.3\",\"242.7\",\"244.7\",\"209.0\",\"204.3\",\"234.2\",\"241.0\",\"328.4\",\"204.5\",\"204.7\",\"216.1\",\"247.8\",\"230.7\",\"277.4\",\"232.3\",\"209.3\",\"227.0\",\"237.5\",\"237.6\",\"317.0\",\"315.2\",\"221.4\",\"213.8\",\"233.0\",\"234.0\",\"247.2\",\"337.2\",\"247.3\",\"215.9\",\"221.6\",\"241.5\",\"242.0\",\"223.0\",\"203.1\",\"227.7\",\"234.8\",\"239.7\",\"270.0\",\"298.3\",\"242.0\",\"226.2\",\"202.8\",\"247.5\",\"229.2\",\"223.2\",\"215.7\",\"241.2\",\"249.2\",\"229.1\",\"308.1\",\"247.6\",\"228.3\",\"200.3\",\"238.6\",\"226.0\",\"244.2\",\"227.1\",\"228.9\",\"238.5\",\"234.6\",\"265.2\",\"322.6\",\"249.7\",\"226.4\",\"202.1\",\"233.6\",\"225.3\",\"216.4\",\"213.8\",\"230.8\",\"233.0\",\"240.0\",\"290.2\",\"244.9\",\"230.2\",\"249.0\",\"244.4\",\"241.0\",\"257.3\",\"234.1\",\"229.9\",\"239.2\",\"228.5\",\"228.3\",\"242.3\",\"225.4\",\"219.4\",\"234.2\",\"232.9\",\"304.2\",\"271.4\",\"211.1\",\"235.6\",\"208.9\",\"244.0\",\"249.9\",\"326.7\",\"345.7\",\"227.3\",\"220.5\",\"222.3\",\"231.5\",\"233.1\",\"328.7\",\"319.8\",\"259.2\",\"265.2\",\"237.2\",\"282.6\",\"219.7\",\"231.1\",\"214.7\",\"237.7\",\"246.4\",\"309.2\",\"349.1\",\"235.3\",\"211.9\",\"222.5\",\"241.6\",\"230.3\",\"345.9\",\"336.7\",\"294.1\",\"267.5\",\"241.2\",\"241.7\",\"237.4\",\"237.8\",\"241.9\",\"320.6\",\"247.1\",\"215.7\",\"214.6\",\"234.0\",\"242.0\",\"200.5\",\"223.0\",\"245.3\",\"244.9\",\"226.6\",\"328.7\",\"278.6\",\"241.0\",\"208.3\",\"208.1\",\"241.2\",\"241.8\",\"325.6\",\"291.9\",\"227.8\",\"224.3\",\"213.7\",\"242.8\",\"228.0\",\"264.9\",\"288.2\",\"297.0\",\"222.8\",\"241.5\",\"275.2\",\"191.8\",\"228.8\",\"235.7\",\"213.8\",\"230.4\",\"227.9\",\"212.8\",\"218.7\",\"214.1\",\"241.8\",\"237.3\",\"208.1\",\"201.4\",\"249.5\",\"241.2\",\"244.6\",\"262.8\",\"295.3\",\"248.1\",\"222.8\",\"232.0\",\"239.5\",\"246.1\",\"336.0\",\"237.1\",\"209.4\",\"201.9\",\"238.5\",\"244.8\",\"211.3\",\"211.6\",\"212.9\",\"242.2\",\"243.7\",\"269.7\",\"286.7\",\"237.4\",\"238.7\",\"208.6\",\"230.5\",\"242.3\",\"248.9\",\"210.4\",\"217.0\",\"246.0\",\"238.1\",\"244.7\",\"222.1\",\"205.6\",\"225.7\",\"225.8\",\"266.9\",\"200.0\",\"226.7\",\"209.9\",\"243.9\",\"232.5\",\"344.9\",\"307.2\",\"328.2\",\"296.1\",\"203.8\",\"201.3\",\"206.8\",\"210.5\",\"211.6\",\"225.9\",\"211.2\",\"216.5\",\"229.6\",\"225.7\",\"322.4\",\"225.3\",\"206.4\",\"202.6\",\"228.3\",\"234.3\",\"216.6\",\"244.8\",\"249.4\",\"242.8\",\"238.7\",\"267.5\",\"310.1\",\"226.6\",\"217.1\",\"246.7\",\"249.1\",\"248.7\",\"312.1\",\"312.7\",\"213.6\",\"220.7\",\"209.7\",\"237.9\",\"244.5\",\"298.5\",\"224.2\",\"233.6\",\"213.4\",\"234.4\",\"233.4\",\"333.0\",\"346.3\",\"239.3\",\"238.5\",\"235.9\",\"246.2\",\"227.9\",\"296.2\",\"212.2\",\"247.0\",\"210.6\",\"225.9\",\"248.7\",\"318.1\",\"279.8\",\"219.7\",\"249.1\",\"228.5\",\"230.0\",\"241.0\",\"200.6\",\"235.5\",\"210.7\",\"230.9\",\"234.7\",\"297.4\",\"226.0\",\"203.1\",\"236.6\",\"241.1\",\"243.6\",\"201.2\",\"202.6\",\"206.2\",\"231.3\",\"236.5\",\"283.9\",\"348.0\",\"230.3\",\"223.7\",\"233.8\",\"248.7\",\"227.4\",\"266.5\",\"331.9\",\"322.8\",\"233.4\",\"249.9\",\"228.4\",\"243.2\",\"246.4\",\"266.6\",\"323.2\",\"234.4\",\"220.9\",\"229.1\",\"235.1\",\"238.7\",\"217.3\",\"228.8\",\"225.9\",\"235.0\",\"244.8\",\"349.0\",\"225.9\",\"214.1\",\"227.4\",\"243.3\",\"230.8\",\"323.6\",\"234.3\",\"211.8\",\"222.3\",\"245.8\",\"227.4\",\"304.9\",\"312.0\",\"256.2\",\"345.3\",\"225.7\",\"208.9\",\"227.8\",\"228.2\",\"227.8\",\"233.3\",\"219.7\",\"201.5\",\"243.6\",\"232.2\",\"338.6\",\"240.2\",\"200.6\",\"209.3\",\"232.5\",\"228.2\",\"331.6\",\"344.2\",\"243.2\",\"206.8\",\"240.8\",\"229.3\",\"246.9\",\"229.8\",\"236.5\",\"209.9\",\"244.5\",\"232.3\",\"331.9\",\"330.6\",\"255.4\",\"325.6\",\"213.8\",\"284.9\",\"210.3\",\"214.3\",\"212.0\",\"248.7\",\"235.0\",\"239.3\",\"291.9\",\"315.3\",\"218.3\",\"213.0\",\"207.6\",\"234.2\",\"236.9\",\"291.8\",\"232.9\",\"237.5\",\"219.5\",\"248.3\",\"234.0\",\"324.2\",\"304.1\",\"345.5\",\"235.7\",\"244.5\",\"249.6\",\"237.5\",\"237.3\",\"252.8\",\"228.3\",\"233.2\",\"211.3\",\"244.0\",\"240.1\",\"239.6\",\"215.1\",\"215.4\",\"236.1\",\"233.2\",\"339.3\",\"307.2\",\"204.6\",\"205.0\",\"234.9\",\"231.1\",\"231.2\",\"207.7\",\"246.3\",\"238.7\",\"235.5\",\"235.9\",\"321.3\",\"305.2\",\"205.1\",\"211.0\",\"238.8\",\"241.7\",\"229.8\",\"301.5\",\"267.6\",\"247.4\",\"231.7\",\"237.5\",\"232.3\",\"236.3\",\"277.2\",\"301.2\",\"312.4\",\"235.2\",\"267.6\",\"216.2\",\"189.5\",\"223.9\",\"222.8\",\"228.7\",\"247.1\",\"240.0\",\"215.0\",\"224.9\",\"239.7\",\"229.8\",\"235.5\",\"344.7\",\"338.2\",\"203.2\",\"224.6\",\"241.5\",\"234.2\",\"232.8\",\"244.3\",\"232.0\",\"231.4\",\"239.7\",\"237.9\",\"252.3\",\"342.9\",\"232.2\",\"229.6\",\"232.5\",\"241.7\",\"247.8\",\"213.8\",\"201.9\",\"212.1\",\"235.7\",\"247.3\",\"294.1\",\"289.7\",\"208.4\",\"247.8\",\"200.6\",\"236.1\",\"231.7\",\"297.7\",\"308.8\",\"246.3\",\"201.1\",\"219.5\",\"247.7\",\"233.9\",\"232.5\",\"208.6\",\"209.3\",\"242.5\",\"231.3\",\"228.9\",\"212.6\",\"240.2\",\"246.9\",\"238.2\",\"326.4\",\"242.2\",\"238.7\",\"214.3\",\"229.3\",\"245.7\",\"329.8\",\"266.8\",\"212.9\",\"233.8\",\"227.7\",\"237.2\",\"243.2\",\"302.2\",\"316.5\",\"215.4\",\"216.3\",\"200.8\",\"236.0\",\"245.9\",\"262.9\",\"250.8\",\"304.3\",\"257.3\",\"248.9\",\"218.6\",\"247.1\",\"232.9\",\"229.8\",\"218.1\",\"231.2\",\"205.4\",\"243.3\",\"240.3\",\"296.5\",\"264.7\",\"223.7\",\"223.3\",\"242.9\",\"245.8\",\"235.5\",\"239.8\",\"236.1\",\"241.3\",\"245.7\",\"242.7\",\"301.3\",\"300.0\",\"267.6\",\"297.8\",\"244.6\",\"211.0\",\"282.8\",\"202.0\",\"204.4\",\"214.1\",\"228.9\",\"229.5\",\"273.8\",\"240.9\",\"222.0\",\"207.7\",\"244.9\",\"244.9\",\"311.6\",\"349.8\",\"312.8\",\"200.0\",\"280.6\",\"293.6\",\"197.4\",\"219.2\",\"216.2\",\"228.8\",\"244.9\",\"209.1\",\"237.4\",\"228.7\",\"240.2\",\"272.6\",\"300.4\",\"222.2\",\"212.0\",\"219.1\",\"244.0\",\"225.5\",\"246.4\",\"245.5\",\"225.6\",\"235.6\",\"232.0\",\"259.1\",\"326.9\",\"230.0\",\"245.1\",\"208.6\",\"244.1\",\"245.0\",\"315.5\",\"299.0\",\"234.3\",\"233.6\",\"244.4\",\"235.3\",\"227.4\",\"264.4\",\"284.4\",\"296.2\",\"237.1\",\"248.8\",\"229.1\",\"238.5\",\"245.7\",\"214.5\",\"235.9\",\"208.7\",\"231.5\",\"229.9\",\"302.5\",\"221.7\",\"210.1\",\"217.6\",\"248.9\",\"233.0\",\"323.9\",\"231.3\",\"202.4\",\"233.0\",\"233.7\",\"236.8\",\"320.2\",\"312.0\",\"221.2\",\"247.9\",\"230.7\",\"233.2\",\"246.1\",\"287.3\",\"291.9\",\"222.8\",\"240.7\",\"202.0\",\"239.0\",\"240.6\",\"240.7\",\"225.5\",\"218.3\",\"226.7\",\"230.9\",\"323.4\",\"220.3\",\"228.2\",\"210.6\",\"244.4\",\"232.0\",\"202.1\",\"215.1\",\"217.1\",\"236.6\",\"237.6\",\"299.9\",\"346.8\",\"203.1\",\"214.9\",\"245.8\",\"231.3\",\"241.2\",\"323.6\",\"216.0\",\"243.9\",\"212.6\",\"239.8\",\"245.3\",\"278.1\",\"203.6\",\"232.1\",\"244.6\",\"241.8\",\"248.3\",\"348.5\",\"247.5\",\"213.3\",\"235.0\",\"229.2\",\"229.1\",\"291.0\",\"299.0\",\"246.7\",\"222.5\",\"212.0\",\"247.6\",\"241.8\",\"207.8\",\"235.6\",\"227.7\",\"249.7\",\"235.6\",\"203.7\",\"216.6\",\"206.5\",\"225.4\",\"225.3\",\"320.3\",\"291.3\",\"205.9\",\"234.8\",\"215.1\",\"244.8\",\"233.2\",\"238.2\",\"237.0\",\"231.8\",\"225.6\",\"239.8\",\"281.9\",\"209.7\",\"218.5\",\"208.4\",\"244.0\",\"226.9\",\"321.6\",\"236.1\",\"240.2\",\"244.7\",\"231.7\",\"234.7\",\"276.6\",\"276.6\",\"271.5\",\"287.6\",\"226.3\",\"200.6\",\"246.1\",\"236.8\",\"248.9\",\"335.0\",\"205.4\",\"204.9\",\"219.8\",\"228.5\",\"235.6\",\"243.2\",\"232.6\",\"221.5\",\"233.6\",\"237.8\",\"220.7\",\"200.3\",\"230.8\",\"248.0\",\"238.7\",\"260.2\",\"285.3\",\"212.1\",\"203.1\",\"209.1\",\"244.5\",\"240.5\",\"256.2\",\"266.5\",\"226.9\",\"226.9\",\"235.8\",\"240.8\",\"233.8\",\"324.8\",\"264.3\",\"247.3\",\"202.5\",\"213.0\",\"249.0\",\"229.8\",\"311.5\",\"301.4\",\"218.5\",\"224.6\",\"203.2\",\"235.6\",\"235.8\",\"209.7\",\"206.1\",\"236.3\",\"248.4\",\"239.1\",\"340.3\",\"203.2\",\"217.7\",\"207.6\",\"242.0\",\"234.2\",\"219.2\",\"223.4\",\"210.1\",\"225.8\",\"237.6\",\"277.0\",\"347.6\",\"344.5\",\"322.5\",\"294.7\",\"215.9\",\"232.3\",\"205.1\",\"231.9\",\"228.9\",\"240.1\",\"215.7\",\"240.5\",\"247.9\",\"231.1\",\"324.4\",\"268.2\",\"205.8\",\"236.2\",\"222.6\",\"235.3\",\"236.4\",\"343.0\",\"335.0\",\"317.8\",\"250.1\",\"210.1\",\"224.5\",\"250.0\",\"222.2\",\"234.9\",\"233.8\",\"291.6\",\"211.9\",\"225.6\",\"206.5\",\"236.4\",\"230.4\",\"321.9\",\"224.2\",\"228.9\",\"205.5\",\"226.7\",\"236.0\",\"298.8\",\"308.0\",\"249.4\",\"226.8\",\"226.0\",\"237.8\",\"232.8\",\"331.1\",\"208.8\",\"239.9\",\"226.7\",\"247.1\",\"242.1\"]},\"selected\":{\"id\":\"1350\"},\"selection_policy\":{\"id\":\"1349\"}},\"id\":\"1272\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1332\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"axis_label\":\"days\",\"axis_label_standoff\":10,\"axis_label_text_color\":\"#E0E0E0\",\"axis_label_text_font\":\"Helvetica\",\"axis_label_text_font_size\":\"1.25em\",\"axis_label_text_font_style\":\"normal\",\"axis_line_alpha\":0,\"axis_line_color\":\"#E0E0E0\",\"coordinates\":null,\"formatter\":{\"id\":\"1302\"},\"group\":null,\"major_label_policy\":{\"id\":\"1303\"},\"major_label_text_color\":\"#E0E0E0\",\"major_label_text_font\":\"Helvetica\",\"major_label_text_font_size\":\"1.025em\",\"major_tick_line_alpha\":0,\"major_tick_line_color\":\"#E0E0E0\",\"minor_tick_line_alpha\":0,\"minor_tick_line_color\":\"#E0E0E0\",\"ticker\":{\"id\":\"1107\"}},\"id\":\"1106\",\"type\":\"LinearAxis\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.5},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.5},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1181\",\"type\":\"Circle\"},{\"attributes\":{\"child\":{\"id\":\"1233\"},\"title\":\"Lactate\"},\"id\":\"1278\",\"type\":\"Panel\"},{\"attributes\":{},\"id\":\"1333\",\"type\":\"Selection\"},{\"attributes\":{\"data\":{\"x\":[0,1,2,3,4,5,6,0,1,2,3,4,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,0,1,2,3,4,4,5,6,7,8,0,1,2,3,4,4,5,6,7,8,0,1,2,3,4,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,5,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,9,9,10,11,12,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,9,9,10,11,12,0,1,2,3,4,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,8,9,10,11,12,0,1,2,3,4,4,5,6,7,8,0,1,2,3,4,4,5,6,7,8,9,10,0,1,2,3,4,5,5,6,7,8,9,10,0,1,2,3,4,5,6,6,7,8,9,10,0,1,2,3,4,5,6,6,7,8,9,10,11,12,0,1,2,3,4,5,5,6,7,8,9,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,8,9,10,11,0,1,2,3,4,5,6,7,8,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,7,8,9,10,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,6,7,8,9,10,0,1,2,3,4,5,0,1,2,3,4,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,7,8,9,10,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,8,9,10,11,0,1,2,3,4,5,6,7,7,8,9,10,11,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,5,6,7,0,1,2,3,4,5,6,0,1,2,3,4,4,5,6,7,8,9,10,11,12,13,14,5,6,7,8,9,10,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,7,8,9,10,11,0,1,2,3,4,5,6,0,1,2,3,4,5,5,6,7,8,9,10,11,0,1,2,3,4,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,0,1,2,3,4,5,0,1,2,3,4,6,7,8,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,0,1,2,3,4,4,5,6,7,8,9,0,1,2,3,4,5,6,6,7,8,9,10,11,12,0,1,2,3,4,5,6,6,7,8,9,10,11,0,1,2,3,4,5,5,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,6,7,8,9,10,0,1,2,3,4,5,6,7,7,8,9,10,0,1,2,3,4,5,6,7,8,9,10,11,12,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,6,7,8,9,0,1,2,3,4,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,6,7,8,9,10,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,7,8,9,10,11,12,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,4,5,6,7,8,9,0,1,2,3,4,4,5,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,5,6,7,8,9,10,11,12,12,13,14,15,16,17,18,19,20,0,1,2,3,4,4,5,6,7,8,9,0,1,2,3,4,5,6,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,0,1,2,3,4,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,0,1,2,3,4,5,6,6,7,8,9,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,0,1,2,3,4,5,6,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,0,1,2,3,4,5,6,0,1,2,3,4,5,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,0,1,2,3,4,5,6,6,7,8,9,10,11,12,0,1,2,3,4,5,5,6,7,8,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,6,7,8,9,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,5,6,6,7,8,9,10,11,0,1,2,3,4,4,5,6,7,8,9,10,11,12,13,14,0,1,2,3,4,0,1,2,3,4,5,0,1,2,3,4,5,6,6,7,8,9,0,1,2,3,4,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,5,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,0,2,3,4,5,6,7,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,0,1,2,3,4,0,1,2,3,4,5,6,7,8,8,9,10,11,12,0,1,2,3,4,5,5,6,7,8,9,0,1,2,3,4,5,6,7,7,8,9,10,11,7,8,9,10,11,12,13,14,14,15,16,17,18,19,0,1,2,3,4,5,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,7,8,9,10,11,12,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,9,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,0,1,2,3,4,5,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,5,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,18,5,6,7,8,9,10,10,11,12,13,0,1,2,3,4,5,6,0,1,2,3,5,6,7,8,9,9,10,11,12,13,14,15,16,17,18,19,0,1,2,3,4,5,5,6,7,8,9,10,0,1,2,3,4,5,6,8,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,8,9,10,11,0,1,2,3,4,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,8,8,9,10,11,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,0,1,2,3,4,5,6,7,8,9,9,10,11,12,0,1,2,3,4,4,5,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,0,1,2,3,4,5,6,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,0,1,2,3,4,4,5,6,7,8,9,10,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,0,1,2,3,4,5,0,1,2,3,4,0,1,2,3,4,5,0,1,2,3,4,5,6,7,8,9,9,10,11,12,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,7,8,9,10,0,1,2,3,4,5,5,6,7,8,9,10,11,5,6,7,8,9,0,1,2,3,4,5,6,7,7,8,9,10,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,4,5,6,7,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,4,5,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,7,8,9,10,11,12,0,1,2,3,4,5,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,7,8,9,10,11,12,0,1,2,3,4,5,6,7,7,8,9,10,11,12,0,1,2,3,0,1,2,3,4,5,6,0,1,2,3,4,5,5,6,7,8,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,0,1,2,3,4,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,0,1,2,3,4,4,5,6,7,8,9,0,1,2,3,4,4,5,6,7,8,7,8,9,10,11,12,12,13,14,15,16,17,0,1,2,3,4,0,1,2,3,4,5,6,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,0,1,2,3,4,5,6,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,9,10,11,13,14,15,16,17,0,1,2,3,4,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,0,1,2,3,4,5,5,6,7,8,9,10,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,4,5,6,7,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,0,1,2,3,4,5,0,1,2,3,4,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,5,6,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,0,1,2,3,0,1,2,3,4,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,5,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,0,1,2,3,4,4,5,6,7,0,1,2,3,4,5,5,6,7,8,9,10,11,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,0,1,2,3,4,6,7,8,9,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,7,8,9,10,11,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,8,9,10,11,12,0,1,2,3,4,5,6,0,1,2,3,4,5,6,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,0,1,2,3,4,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,0,1,2,3,4,5,6,7,8,8,0,1,2,3,4,4,5,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,0,1,2,3,4,4,5,6,7,8,9,10,11,12,0,1,2,3,4,5,5,6,7,8,9,10,11,12,13,0,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,7,8,9,10,11,12,0,2,3,4,5,6,7,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,6,7,8,9,10,0,1,2,3,4,5,6,7,8,9,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,7,7,8,9,10,11,12,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,5,6,7,8,9,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,0,1,2,3,4,0,1,2,3,4,5,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,0,1,2,3,4,5,6,7,7,8,9,10,0,1,2,3,4,4,5,6,7,8,5,6,7,0,1,2,0,1,2,3,4,5,6,6,7,8,9,10,11,0,1,2,3,4,5,6,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,18,19,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,0,1,2,3,4,4,5,6,7,8,9,10,11,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,6,6,7,8,9,6,7,8,9,10,11,12,13,14,15,5,6,7,8,9,10,11,7,8,9,10,11,12,13,13,14,15,16,17,18,19,20,21,22,23,0,1,2,3,4,5,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,7,8,9,10,11,12,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,5,6,6,7,8,9,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,0,1,2,3,4,5,5,6,7,8,9,0,1,2,3,4,5,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,18,0,1,2,3,4,4,5,6,7,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,4,5,6,7,8,0,1,2,3,4,5,6,7,8,0,1,2,5,6,7,8,9,0,1,2,3,4,5,6,7,8,8,9,10,11,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14,15,16,0,1,2,3,4,5,5,6,7,8,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,14,0,1,2,3,4,5,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,7,8,9,10,11,0,1,2,3,4,4,5,6,7,8,9,10,11,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,6,7,8,8,9,10,11,12,13,14,15,16,17,0,1,2,3,4,5,6,0,1,2,3,4,5,6,7,7,8,9,10,11,0,1,2,3,4,5,0,1,2,3,4,4,5,6,7,8,9,10,11,12,13,0,1,2,3,4,5,6,7,7,8,9,10,11,12,13,14],\"y\":[\"0.4\",\"0.6\",\"0.7\",\"0.4\",\"0.7\",\"0.4\",\"0.7\",\"0.8\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.7\",\"0.7\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.8\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.8\",\"0.7\",\"0.4\",\"0.8\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.4\",\"0.6\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.0\",\"0.9\",\"0.8\",\"1.0\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.3\",\"0.6\",\"0.6\",\"0.5\",\"0.8\",\"0.4\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.8\",\"0.5\",\"0.8\",\"0.8\",\"0.7\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.8\",\"0.8\",\"0.8\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.8\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.7\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.8\",\"0.5\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.7\",\"0.7\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.8\",\"0.8\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.8\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.8\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.8\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.8\",\"0.7\",\"0.8\",\"0.8\",\"0.6\",\"0.8\",\"0.5\",\"0.7\",\"0.4\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.8\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.8\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.8\",\"0.7\",\"0.7\",\"0.5\",\"0.8\",\"0.7\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.7\",\"0.8\",\"0.4\",\"0.6\",\"0.8\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.8\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.8\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.8\",\"0.6\",\"0.7\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.8\",\"0.7\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.8\",\"0.7\",\"0.8\",\"0.4\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.8\",\"0.5\",\"0.5\",\"0.5\",\"0.8\",\"0.8\",\"0.7\",\"0.5\",\"0.6\",\"0.8\",\"0.8\",\"0.7\",\"0.7\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.5\",\"0.8\",\"0.6\",\"0.7\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.8\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.8\",\"0.4\",\"0.5\",\"0.8\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.8\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.8\",\"0.8\",\"0.8\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.7\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.7\",\"0.7\",\"0.8\",\"0.8\",\"0.8\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.7\",\"0.5\",\"0.5\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.8\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.8\",\"0.7\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.8\",\"0.8\",\"0.7\",\"0.5\",\"0.6\",\"0.8\",\"0.7\",\"0.5\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.8\",\"0.7\",\"0.8\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.8\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.8\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.8\",\"0.5\",\"0.6\",\"0.4\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.7\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.8\",\"0.7\",\"0.5\",\"0.8\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.8\",\"0.4\",\"0.7\",\"0.6\",\"0.8\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.8\",\"0.8\",\"0.8\",\"0.8\",\"0.5\",\"0.7\",\"0.6\",\"0.8\",\"0.8\",\"0.5\",\"0.8\",\"0.7\",\"0.7\",\"0.8\",\"0.8\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.7\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.8\",\"0.4\",\"0.6\",\"0.8\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.8\",\"0.8\",\"0.5\",\"0.5\",\"0.8\",\"0.4\",\"0.7\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.6\",\"0.4\",\"0.4\",\"0.8\",\"0.6\",\"0.5\",\"0.8\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.8\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"1.0\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.9\",\"0.9\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.1\",\"1.3\",\"1.3\",\"1.2\",\"1.5\",\"1.3\",\"1.4\",\"0.8\",\"0.6\",\"0.8\",\"0.5\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.5\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.8\",\"0.4\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.8\",\"0.8\",\"0.7\",\"0.8\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.4\",\"0.7\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.8\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.7\",\"0.7\",\"0.8\",\"0.7\",\"0.6\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.7\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.8\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"1.1\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"1.0\",\"0.8\",\"0.9\",\"0.8\",\"1.0\",\"1.0\",\"1.1\",\"1.1\",\"1.2\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.8\",\"0.4\",\"0.7\",\"0.7\",\"0.6\",\"0.4\",\"0.7\",\"0.7\",\"0.7\",\"0.4\",\"0.5\",\"0.7\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.8\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.8\",\"0.5\",\"0.6\",\"0.5\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.8\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.8\",\"0.8\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.8\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.5\",\"0.8\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.7\",\"0.5\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.6\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.8\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.4\",\"0.4\",\"0.5\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.5\",\"0.8\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.8\",\"0.6\",\"0.5\",\"0.8\",\"0.5\",\"0.7\",\"0.4\",\"0.8\",\"0.7\",\"0.6\",\"0.8\",\"0.7\",\"0.5\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.7\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.8\",\"0.4\",\"0.8\",\"0.8\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.8\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.8\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.5\",\"0.6\",\"0.8\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.5\",\"0.8\",\"0.8\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.8\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.7\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.8\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.8\",\"0.6\",\"0.8\",\"0.8\",\"0.6\",\"0.8\",\"0.7\",\"0.6\",\"0.8\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.8\",\"0.4\",\"0.7\",\"0.6\",\"0.8\",\"0.8\",\"0.7\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.4\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.8\",\"0.8\",\"0.7\",\"0.6\",\"0.8\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.7\",\"0.6\",\"0.8\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.4\",\"0.7\",\"0.7\",\"0.8\",\"0.5\",\"0.8\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.4\",\"0.8\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.8\",\"0.4\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.8\",\"0.6\",\"0.8\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.8\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.8\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.8\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.8\",\"0.6\",\"0.5\",\"0.7\",\"0.4\",\"0.7\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.6\",\"0.6\",\"0.8\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.7\",\"0.8\",\"0.8\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.5\",\"0.6\",\"0.4\",\"0.8\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.8\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.7\",\"0.5\",\"0.8\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.8\",\"0.5\",\"0.7\",\"0.4\",\"0.4\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.8\",\"0.4\",\"0.6\",\"0.8\",\"0.8\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.8\",\"0.4\",\"0.8\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.8\",\"0.8\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.5\",\"0.6\",\"0.8\",\"0.8\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.8\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.8\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"1.1\",\"1.0\",\"1.0\",\"1.1\",\"1.0\",\"1.1\",\"0.8\",\"0.9\",\"1.0\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.8\",\"0.8\",\"0.8\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.4\",\"0.8\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.8\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.4\",\"0.7\",\"0.7\",\"0.8\",\"0.5\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.4\",\"0.8\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.8\",\"0.8\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.7\",\"0.6\",\"0.8\",\"0.6\",\"0.8\",\"0.7\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.7\",\"0.8\",\"0.6\",\"0.8\",\"0.8\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.7\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.4\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.6\",\"0.7\",\"0.6\",\"0.8\",\"0.4\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.8\",\"0.5\",\"0.8\",\"0.7\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.8\",\"0.8\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.7\",\"0.7\",\"0.8\",\"0.8\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.7\",\"0.8\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.8\",\"0.5\",\"0.8\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.8\",\"0.5\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.5\",\"0.4\",\"0.8\",\"0.4\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.8\",\"0.8\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.8\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.8\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.8\",\"0.8\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.8\",\"0.4\",\"0.8\",\"0.6\",\"0.8\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.8\",\"0.6\",\"0.6\",\"0.4\",\"0.8\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.8\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.8\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.8\",\"0.8\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.4\",\"0.7\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.7\",\"0.4\",\"0.7\",\"0.6\",\"0.4\",\"0.4\",\"0.8\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.8\",\"0.6\",\"0.5\",\"0.8\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.8\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.4\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.7\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.7\",\"0.8\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.8\",\"0.4\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.8\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.8\",\"0.8\",\"0.7\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.8\",\"0.5\",\"0.8\",\"0.4\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.4\",\"0.6\",\"0.8\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.8\",\"0.6\",\"0.8\",\"0.8\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.8\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.6\",\"0.8\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.8\",\"0.8\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.8\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.5\",\"0.7\",\"0.5\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.8\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.8\",\"0.6\",\"0.4\",\"0.6\",\"0.8\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.4\",\"0.4\",\"0.7\",\"0.5\",\"0.5\",\"0.8\",\"0.8\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.8\",\"0.6\",\"0.4\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.8\",\"0.6\",\"0.7\",\"0.5\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.8\",\"0.4\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.4\",\"0.6\",\"0.8\",\"0.7\",\"0.8\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.8\",\"0.5\",\"0.7\",\"0.8\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.8\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.8\",\"0.8\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.8\",\"0.7\",\"0.4\",\"0.8\",\"0.7\",\"0.7\",\"0.8\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.7\",\"0.6\",\"0.8\",\"0.7\",\"0.8\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.8\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.8\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.8\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.8\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.8\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.8\",\"0.7\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.8\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.8\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.8\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.7\",\"0.4\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.7\",\"0.4\",\"0.8\",\"0.7\",\"0.8\",\"0.5\",\"0.8\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.7\",\"0.8\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.8\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.8\",\"0.8\",\"0.4\",\"0.6\",\"0.6\",\"0.8\",\"0.6\",\"0.7\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.8\",\"0.7\",\"0.7\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.8\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.7\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.8\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.4\",\"0.7\",\"0.6\",\"0.5\",\"0.8\",\"0.4\",\"0.5\",\"0.8\",\"0.6\",\"0.5\",\"0.7\",\"0.4\",\"0.7\",\"0.7\",\"0.7\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.8\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.8\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.4\",\"0.8\",\"0.4\",\"0.8\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.8\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.8\",\"0.8\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.8\",\"0.7\",\"0.5\",\"0.4\",\"0.5\",\"0.8\",\"0.7\",\"0.8\",\"0.5\",\"0.6\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.8\",\"0.4\",\"0.8\",\"0.7\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.8\",\"0.5\",\"0.7\",\"0.7\",\"0.4\",\"0.5\",\"0.7\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.8\",\"0.7\",\"0.8\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.8\",\"0.6\",\"0.8\",\"0.7\",\"0.8\",\"0.7\",\"0.8\",\"0.5\",\"0.7\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.7\",\"0.4\",\"0.8\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.4\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.6\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.8\",\"0.5\",\"0.5\",\"0.6\",\"0.8\",\"0.8\",\"0.7\",\"0.8\",\"0.4\",\"0.8\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.8\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.8\",\"0.7\",\"0.4\",\"0.8\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.8\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.4\",\"0.8\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.4\",\"0.7\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.8\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.8\",\"0.7\",\"0.8\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.8\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.4\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.8\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.8\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.8\",\"0.6\",\"0.5\",\"0.4\",\"0.8\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.3\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.4\",\"0.7\",\"0.7\",\"0.4\",\"0.5\",\"0.8\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.4\",\"0.8\",\"0.8\",\"0.7\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.8\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.4\",\"0.5\",\"0.8\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.8\",\"0.7\",\"0.5\",\"0.7\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.8\",\"0.5\",\"0.8\",\"0.5\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.7\",\"0.8\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.7\",\"0.4\",\"0.7\",\"0.6\",\"0.7\",\"0.4\",\"0.6\",\"0.7\",\"0.4\",\"0.4\",\"0.5\",\"0.3\",\"0.4\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.8\",\"0.7\",\"0.6\",\"0.7\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.8\",\"0.5\",\"0.4\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.8\",\"0.5\",\"0.5\",\"0.8\",\"0.7\",\"0.6\",\"0.4\",\"0.7\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.8\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.6\",\"0.8\",\"0.8\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.3\",\"0.5\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.8\",\"0.7\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.5\",\"0.8\",\"0.4\",\"0.6\",\"0.8\",\"0.6\",\"0.8\",\"0.8\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.8\",\"0.8\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.8\",\"0.8\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.8\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.8\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.4\",\"0.7\",\"0.7\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.7\",\"0.7\",\"0.4\",\"0.7\",\"0.4\",\"0.7\",\"0.5\",\"0.5\",\"0.8\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.8\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.4\",\"0.8\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.6\",\"0.4\",\"0.7\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.8\",\"0.4\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.5\"]},\"selected\":{\"id\":\"1343\"},\"selection_policy\":{\"id\":\"1342\"}},\"id\":\"1220\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"1212\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"source\":{\"id\":\"1180\"}},\"id\":\"1185\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1090\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1347\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"overlay\":{\"id\":\"1074\"}},\"id\":\"1070\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"1293\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1348\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"green\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"green\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"green\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1275\",\"type\":\"Circle\"},{\"attributes\":{\"data\":{\"x\":[0,2,4,6,8,10,11,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,6,8,10,12,14,16,18,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,11,12,13,15,16,17,18,19,0,2,4,6,8,10,11,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,16,17,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,7,9,11,13,15,16,17,18,19,20,21,22,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,7,9,11,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,7,9,11,13,15,17,19,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,11,12,13,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,0,3,5,7,9,11,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,20,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,20,0,3,5,7,9,11,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,6,8,10,12,14,16,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,7,9,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,6,8,10,12,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,0,2,4,6,8,10,12,5,7,9,11,13,15,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,9,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,3,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,0,2,4,6,8,10,11,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,7,9,11,13,15,17,19,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,6,8,10,12,14,16,18,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,3,5,7,9,11,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,16,17,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,0,2,4,6,8,10,11,12,0,2,4,6,8,0,3,5,7,9,10,11,12,13,14,15,0,2,4,6,8,5,7,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,0,2,4,6,8,10,0,2,4,6,8,10,8,10,12,14,16,18,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,5,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,6,8,10,12,14,16,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,11,12,13,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,5,7,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,7,9,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,17,0,2,4,6,8,5,7,9,11,13,15,0,2,4,6,8,0,2,4,7,9,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,6,8,10,12,14,16,18,19,20,21,22,23,24,25,26,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,9,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,6,8,10,12,14,16,0,2,4,6,8,0,2,4,6,8,0,2,4,6,9,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,11,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,16,18,20,0,2,4,6,8,10,5,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,11,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,9,0,2,4,6,8,10,0,2,4,7,9,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,9,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,0,2,4,7,9,11,0,2,5,7,9,11,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,7,9,11,13,15,17,19,6,8,10,12,14,16,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,6,8,10,12,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,5,7,9,11,13,15,17,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,12,13,14,15,0,2,4,6,8,0,2,4,6,8,10,12,5,7,9,11,13,15,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,7,9,11,13,15,17,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,5,7,9,11,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,5,7,9,11,13,15,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,7,9,11,13,15,17,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,17,19,20,21,22,23,24,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,10,11,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,6,8,10,12,14,16,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,9,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,9,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,9,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,13,14,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,3,5,7,9,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,7,9,11,13,15,17,19,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,6,8,10,12,14,16,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,17,0,2,4,6,8,10,11,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,5,7,9,11,13,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,0,2,4,6,8,10,12,13,14,15,16,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,5,7,9,11,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,7,9,11,13,15,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,3,5,7,9,11,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,6,8,10,12,14,16,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,17,0,3,5,7,9,11,13,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,3,5,7,9,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,11,12,13,14,15,16,17,18,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,3,5,7,9,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,12,0,3,5,7,9,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,14,15,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,7,9,11,13,15,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,9,10,11,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,9,10,11,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,7,9,10,11,12,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,7,9,11,13,15,17,19,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,14,15,16,17,0,2,4,6,8,0,2,4,6,8,10,12,5,7,9,11,13,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,11,12,13,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,15,16,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,15,16,17,18,19,20,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,10,12,13,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,13,14,0,2,4,6,8,10,0,2,4,6,8,0,2,4,6,8,0,2,4,6,8,10,12,0,2,4,6,8,10,12,7,9,11,13,15,17,19,0,2,4,6,8,10,12,7,9,11,13,15,0,2,4,6,9,11,0,2,4,6,8,0,2,4,6,8,10,11,12,13,14,0,2,4,6,8,7,9,11,13,15,17,19,0,2,4,6,8,10,12,13,14,15,0,2,4,6,8,10,0,2,4,6,8,10,0,2,4,6,8,10,12,0,2,4,6,8,10,0,2,4,6,8],\"y\":[\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.2\",\"0.6\",\"0.5\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.2\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.4\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.7\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.2\",\"0.2\",\"0.5\",\"0.4\",\"0.7\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.8\",\"0.7\",\"0.8\",\"0.4\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.8\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.8\",\"0.7\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.2\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.8\",\"0.7\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.2\",\"0.2\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.8\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.2\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.7\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.6\",\"0.7\",\"0.2\",\"0.2\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.8\",\"0.7\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.4\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.8\",\"0.8\",\"0.5\",\"0.5\",\"0.4\",\"1.0\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.4\",\"0.7\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.2\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.4\",\"0.2\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.8\",\"0.7\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.4\",\"0.7\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.2\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.2\",\"0.2\",\"0.5\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.7\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.8\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.7\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.2\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.2\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.9\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.3\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.8\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.2\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.4\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.2\",\"0.2\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.4\",\"0.7\",\"0.2\",\"0.2\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.8\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.7\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.2\",\"0.2\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.6\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.2\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.7\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.2\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.3\",\"0.2\",\"0.2\",\"0.6\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.4\",\"0.4\",\"0.2\",\"0.3\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.6\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.7\",\"0.8\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.7\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.8\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.2\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.5\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.7\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.7\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.2\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.7\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.2\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.7\",\"0.7\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.7\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.7\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.4\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.2\",\"0.4\",\"0.4\",\"0.7\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.8\",\"0.8\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.8\",\"0.7\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.2\",\"0.2\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.3\",\"0.2\",\"0.2\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.8\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.7\",\"0.7\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.8\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.7\",\"0.7\",\"0.2\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.5\",\"0.7\",\"0.4\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.4\",\"0.5\",\"0.9\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.4\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.2\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.2\",\"0.4\",\"0.2\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.4\",\"0.7\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.2\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.8\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.7\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.6\",\"0.4\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.7\",\"0.7\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.7\",\"0.8\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.2\",\"0.4\",\"0.2\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.6\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.6\",\"0.6\",\"0.4\",\"0.2\",\"0.2\",\"0.5\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.7\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.8\",\"0.7\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.4\",\"0.2\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.7\",\"0.4\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.8\",\"0.7\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.8\",\"0.8\",\"0.6\",\"0.4\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.3\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.8\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.2\",\"0.2\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.6\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.7\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.4\",\"0.7\",\"0.4\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.4\",\"0.2\",\"0.2\",\"0.5\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.7\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.8\",\"0.7\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.2\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.6\",\"0.7\",\"0.8\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.3\",\"0.2\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.4\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.7\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.2\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.7\",\"0.4\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.2\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.2\",\"0.2\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.8\",\"0.7\",\"0.2\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.8\",\"0.5\",\"0.4\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.7\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.6\",\"0.4\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.8\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.2\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.7\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.4\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.8\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.2\",\"0.4\",\"0.2\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.7\",\"0.5\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.7\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.7\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.7\",\"0.8\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.2\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.8\",\"0.8\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.8\",\"0.7\",\"0.7\",\"0.5\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.5\",\"0.7\",\"0.2\",\"0.2\",\"0.2\",\"0.6\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.7\",\"0.2\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.5\",\"0.7\",\"0.4\",\"0.2\",\"0.2\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.5\",\"0.4\",\"0.7\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.4\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.4\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.7\",\"0.7\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.6\",\"0.8\",\"0.7\",\"0.8\",\"0.6\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.4\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.7\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.4\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.8\",\"0.8\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.5\",\"0.3\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.4\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.7\",\"0.8\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.4\",\"0.2\",\"0.6\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.2\",\"0.4\",\"0.2\",\"0.4\",\"0.6\",\"0.7\",\"0.4\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.7\",\"0.5\",\"0.8\",\"0.7\",\"0.8\",\"0.4\",\"0.4\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.2\",\"0.2\",\"0.6\",\"0.4\",\"0.2\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.6\",\"0.4\",\"0.2\",\"0.2\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.5\",\"0.7\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.7\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.7\",\"0.6\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.4\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.5\",\"0.2\",\"0.2\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.3\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.2\",\"0.3\",\"0.2\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.5\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.3\",\"0.4\",\"0.3\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.8\",\"0.3\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.3\",\"0.2\",\"0.2\",\"0.4\",\"0.6\",\"0.7\",\"0.7\",\"0.5\",\"0.7\",\"0.6\",\"0.7\",\"0.5\",\"0.5\",\"0.5\",\"0.9\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.5\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.2\",\"0.4\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.5\",\"0.3\",\"0.3\",\"0.3\",\"0.4\",\"0.6\",\"0.6\",\"0.7\",\"0.2\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.2\",\"0.4\",\"0.4\",\"0.5\",\"0.6\",\"0.7\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.6\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.7\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.4\",\"0.7\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.7\",\"0.3\",\"0.3\",\"0.2\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.4\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.5\",\"0.4\",\"0.2\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.6\",\"0.4\",\"0.3\",\"0.2\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.6\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.2\",\"0.4\",\"0.6\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.6\",\"0.3\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.3\",\"0.4\",\"0.4\",\"0.4\",\"0.6\",\"0.7\",\"0.7\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.4\",\"0.6\",\"0.7\",\"0.2\",\"0.4\",\"0.3\",\"0.5\",\"0.6\",\"0.5\",\"0.5\",\"0.2\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.6\",\"0.4\",\"0.4\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.3\",\"0.4\",\"0.6\",\"0.5\",\"0.2\",\"0.2\",\"0.3\",\"0.4\",\"0.5\",\"0.6\",\"0.6\",\"0.7\",\"0.6\",\"0.7\",\"0.3\",\"0.3\",\"0.4\",\"0.4\",\"0.5\",\"0.4\",\"0.4\",\"0.3\",\"0.4\",\"0.5\",\"0.7\",\"0.7\",\"0.2\",\"0.3\",\"0.3\",\"0.5\",\"0.5\",\"0.6\",\"0.7\",\"0.6\",\"0.6\",\"0.7\",\"0.4\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.7\",\"0.2\",\"0.3\",\"0.2\",\"0.6\",\"0.6\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.6\",\"0.5\",\"0.7\",\"0.6\",\"0.3\",\"0.2\",\"0.3\",\"0.5\",\"0.5\",\"0.5\",\"0.4\",\"0.4\",\"0.2\",\"0.6\",\"0.5\"]},\"selected\":{\"id\":\"1325\"},\"selection_policy\":{\"id\":\"1324\"}},\"id\":\"1042\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1294\",\"type\":\"AllLabels\"}],\"root_ids\":[\"1279\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n", " const render_items = [{\"docid\":\"69ddc643-13f2-4570-865d-c6486a1963fd\",\"root_ids\":[\"1279\"],\"roots\":{\"1279\":\"034e02aa-ce75-4d67-8966-0e7020a253d1\"}}];\n", " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", " }\n", " if (root.Bokeh !== undefined) {\n", " embed_document(root);\n", " } else {\n", " let attempts = 0;\n", " const timer = setInterval(function(root) {\n", " if (root.Bokeh !== undefined) {\n", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "1279" } }, "output_type": "display_data" } ], "source": [ "#YOUR CODE HERE\n", "from bokeh.plotting import figure, show, curdoc\n", "from bokeh.models.widgets import Panel, Tabs\n", "from bokeh.io import output_notebook\n", "output_notebook()\n", "curdoc().theme = 'dark_minimal'\n", "\n", "tabs = []\n", "for code, meaning in codes_dict.items():\n", " type = meaning.split(maxsplit=1)[0]\n", " p = figure(height=600, \n", " width=600, \n", " title=meaning,\n", " y_axis_label= f'{type} ({df_not_survived.UNITS[df_not_survived.CODE_y == code].iat[0]})',\n", " x_axis_label='days')\n", " p.circle(df_not_survived[df_not_survived.CODE_y == code].days.dt.days, \n", " df_not_survived[df_not_survived.CODE_y == code].VALUE, \n", " color='red', \n", " alpha=0.5)\n", " p.circle(df_survived[df_survived.CODE_y == code].days.dt.days, \n", " df_survived[df_survived.CODE_y == code].VALUE, \n", " color='green', \n", " alpha=0.5)\n", " tabs.append(Panel(child=p, title=type))\n", "\n", "\n", "tabs = Tabs(tabs=tabs)\n", "\n", "show(tabs)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "## Part 5: Plot the location of the patients (10 pt)\n", "\n", "This is a bonus part. Can you plot the patients location on a map? See also \n", "https://docs.bokeh.org/en/latest/docs/user_guide/geo.html \n", "\n", "You can use either package folium or geopandas. You need the Latitude and Longitude information from the patient tabel\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "### 5.1 Code your solution" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
Make this Notebook Trusted to load map: File -> Trust Notebook
" ], "text/plain": [ "" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import folium\n", "\n", "massachusetts_geo = config['massachusetts']\n", "mapobj = folium.Map(location= [41, -70], zoom_start=7)\n", "\n", "borderstyle = {\n", " 'color': 'black',\n", " 'fill': False,\n", " 'weight': 2\n", "}\n", "\n", "folium.GeoJson(data=massachusetts_geo, name='borders', style_function=lambda x: borderstyle).add_to(mapobj)\n", "data_points = folium.FeatureGroup('healthcost').add_to(mapobj)\n", "\n", "for i in range(0, len(df_patients)):\n", " # sets the color to green if the person is still alive\n", " if pd.isnull(df_patients.iloc[i]['DEATHDATE']):\n", " color = 'green'\n", " else:\n", " color = 'red'\n", " # obtain coords\n", " lat = df_patients.iloc[i]['LAT']\n", " lon = df_patients.iloc[i]['LON']\n", " folium.Circle(location=[lat, lon], color=color).add_to(data_points) # create datapoint\n", " \n", "folium.LayerControl().add_to(mapobj)\n", "mapobj" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.8" }, "vscode": { "interpreter": { "hash": "6b91fa5cffef32cb10787a50fea9666676a7951181e01280b4644cd70c964bf4" } } }, "nbformat": 4, "nbformat_minor": 4 }